diff --git a/README.md b/README.md
index 677fe04cc8..bdabad7481 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,12 @@
-# Feathers 3.4.0-beta
-
----
-
-**Warning:** This is a pre-release version of Feathers UI. It may contain bugs or unfinished features. It is not recommended for production apps because it is considered potentially *unstable*. Use at your own risk. To download a stable build, visit the [Feathers website](https://feathersui.com/).
-
----
+# Feathers 3.4.0
Say hello to [Feathers UI](https://feathersui.com/), a library of light-weight, skinnable, and extensible UI controls for mobile and desktop. The components run on [Starling Framework](http://starling-framework.org/) and [Adobe AIR](http://www.adobe.com/products/air.html) — offering blazing fast GPU powered graphics to create a smooth and responsive experience. Build completely standalone, native applications on iOS, Android, Windows, and macOS, or target Adobe Flash Player in desktop browsers. Created by [Josh Tynjala](https://twitter.com/joshtynjala) from Bowler Hat LLC, Feathers UI is free and open source.
## Quick Links
* [Website](https://feathersui.com/)
-* [Beta Help](https://feathersui.com/beta/help/)
-* [Beta API Reference](https://feathersui.com/beta/api-reference/)
+* [Help](https://feathersui.com/help/)
+* [API Reference](https://feathersui.com/api-reference/)
* [Discussion Forum](http://forum.starling-framework.org/forum/feathers)
* [Github Project](https://github.com/BowlerHatLLC/feathers)
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 50b8204daf..a8e7e5d483 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -2,7 +2,7 @@
Noteworthy changes in official, stable releases of [Feathers UI](http://feathersui.com/).
-## 3.4.0 - In Development
+## 3.4.0 - December 2017
* New Component: DataGrid displays a list of data as a table. Each item is rendered as a row, divided into columns for each of the item's fields. Supports sorting columns, resizing columns, and drag-and-drop reordering of columns.
* Support for Android TV. Refactored focus management API and keyboard interaction to support TV remotes. Support scaling to TV resolutions.
@@ -41,6 +41,7 @@ Noteworthy changes in official, stable releases of [Feathers UI](http://feathers
* PickerList: fixed issue where the pop-up list may be given focus in the wrong focus manager when it uses a different focus manager than the PickerList.
* ScreenDensityScaleFactorManager: added support for Android TV and Apple tvOS.
* ScrollBar, SimpleScrollBar, Slider: fixed issue where the scroll bar could not reach the maximum scroll position with certain page or step values.
+* Scroller: fixed issue where a null reference error could be thrown if scrolling animation were manually removed just as it completed.
* SpinnerList: added hideSelectionOverlayUnlessFocused to allow the selectionOverlaySkin to be hidden when the list is not focused if showSelectionOverlay is true.
* SpinnerList: added showSelectionOverlay property to completely hide the selectionOverlaySkin skin when set to false.
* SpinnerList: The selectedIndex and selectedItem is changed immediately when an item renderer is triggered or keyboard events change selection, instead of waiting for the animation to complete.
diff --git a/build.properties b/build.properties
index 29fbd9c438..554bdd6694 100644
--- a/build.properties
+++ b/build.properties
@@ -24,6 +24,6 @@ themes.output = ${output.path}/themes
swf.version = 30
-feathers.version = 3.4.0-beta
+feathers.version = 3.4.0
footer.text = Feathers | Github Project | Support Forum
\ No newline at end of file
diff --git a/source/feathers/FEATHERS_VERSION.as b/source/feathers/FEATHERS_VERSION.as
index 91503f819e..3c59e5135b 100644
--- a/source/feathers/FEATHERS_VERSION.as
+++ b/source/feathers/FEATHERS_VERSION.as
@@ -19,5 +19,5 @@ package feathers
*
* @productversion Feathers 2.1.0
*/
- public const FEATHERS_VERSION:String = "3.4.0-beta";
+ public const FEATHERS_VERSION:String = "3.4.0";
}