diff --git a/README.md b/README.md
index 413aa0c328..42ecd9b395 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,12 @@
-# Feathers 3.2.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.2.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 the [Adobe Flash runtimes](https://www.adobe.com/devnet/games/runtimes.html) — offering blazing fast GPU powered graphics to create a smooth and responsive experience. Build completely standalone, native applications on iOS, Android, Windows, and Mac OS X, 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 9aa56a61b6..8c58a38311 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -2,7 +2,7 @@
Noteworthy changes in official, stable releases of [Feathers UI](http://feathersui.com/).
-## 3.2.0 - In Development
+## 3.2.0 - April 2017
* PullToRefresh: new example that demonstrates how to support the popular "pull to refresh" gesture with Feathers lists and other scrolling containers.
* TabNavigator: support for swiping between tabs.
@@ -26,9 +26,11 @@ Noteworthy changes in official, stable releases of [Feathers UI](http://feathers
* FeathersControl; layoutData is set to null when disposed to avoid potential memory leaks.
* FeathersControl: Removes event listeners on styleNameList when disposed so that they cannot be called for no reason.
* FeathersControl; added ignoreNextStyleRestriction() to allow components to set defaults during initialization while still allowing a theme to replace styles later.
+* FeathersControl: fixed an issue where measured minimum dimensions were not affected by explicit maximum dimensions.
* GroupedList: similar to items, an error is thrown if duplicate header or footer data appears in the data provider.
* HorizontalLayout, VerticalLayout: fixed issue where includeInLayout was ignored when distributing item sizes.
-* HorizontalLayout, VerticalLayotu: fixed issue where includeInLayout was ignored when using percent dimensions.
+* HorizontalLayout, VerticalLayout: fixed issue where includeInLayout was ignored when using percent dimensions.
+* HorizontalLayout, VerticalLayout: fixed issue where the typicalItem could not resize after layout.
* ImageLoader: supports asynchronous texture uploads to improve performance when uploading textures to the GPU.
* ImageLoader: exposed sourceToTextureCacheKey() to allow subclasses to override the key used in the TextureCache for non-URL sources.
* ImageLoader: createTextureOnRestore accepts sources that are non-URLs to allow subclasses to override this behavior.
@@ -52,6 +54,7 @@ Noteworthy changes in official, stable releases of [Feathers UI](http://feathers
* SpinnerList: fixed issue where scroll position was not updated if layout snapInterval changed.
* StageTextTextEditor: position of StageText can no longer be larger than 8191 or smaller than -8192 to avoid a runtime error.
* StageTextTextEditor: added clearButtonMode property to support new StageText API.
+* StageTextTextEditor: does not call assignFocus() on StageText if StageText already has focus because this can cause soft keyboard to close and re-open on iOS.
* TabBar: fixed issue where setSelectedIndexWithAnimation() and setSelectedItemWithAnimation() did not change the value of the selectedItem property.
* TabBarSlideTransitionManager: moved to feathers-compat project.
* TextBlockTextRenderer: fixed issue where a new line width would not be properly detected when using content property, and optimized for the standard text case.
diff --git a/build.properties b/build.properties
index d13e095062..21013f9cb8 100644
--- a/build.properties
+++ b/build.properties
@@ -24,6 +24,6 @@ themes.output = ${output.path}/themes
swf.version = 30
-feathers.version = 3.2.0-beta
+feathers.version = 3.2.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 b67f165489..6a1f65ad72 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.2.0-beta";
+ public const FEATHERS_VERSION:String = "3.2.0";
}