diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4f58bb67..0ed7837c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,20 @@
Change Log
==========
+## Version 2.8.9
+
+* Make OSGi bundle's dependency on `sun.misc` optional (#1993).
+* Deprecate `Gson.excluder()` exposing internal `Excluder` class (#1986).
+* Prevent Java deserialization of internal classes (#1991).
+* Improve number strategy implementation (#1987).
+* Fix LongSerializationPolicy null handling being inconsistent with Gson (#1990).
+* Support arbitrary Number implementation for Object and Number deserialization (#1290).
+* Bump proguard-maven-plugin from 2.4.0 to 2.5.1 (#1980).
+* Don't exclude static local classes (#1969).
+* Fix `RuntimeTypeAdapterFactory` depending on internal `Streams` class (#1959).
+* Improve Maven build (#1964).
+* Make dependency on `java.sql` optional (#1707).
+
## Version 2.8.8
* Fixed issue with recursive types (#1390).
diff --git a/extras/pom.xml b/extras/pom.xml
index bda0e646..2cef36ef 100644
--- a/extras/pom.xml
+++ b/extras/pom.xml
@@ -3,12 +3,12 @@
com.google.code.gson
gson-parent
- 2.9-SNAPSHOT
+ 2.9.0-SNAPSHOT
gson-extras
jar
- 2.9-SNAPSHOT
+ 2.9.0-SNAPSHOT
2008
Gson Extras
Google Gson grab bag of utilities, type adapters, etc.
diff --git a/gson/pom.xml b/gson/pom.xml
index 672ef431..d9d37baa 100644
--- a/gson/pom.xml
+++ b/gson/pom.xml
@@ -4,7 +4,7 @@
com.google.code.gson
gson-parent
- 2.9-SNAPSHOT
+ 2.9.0-SNAPSHOT
gson
diff --git a/pom.xml b/pom.xml
index 735f86ad..d0d45be9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
com.google.code.gson
gson-parent
- 2.9-SNAPSHOT
+ 2.9.0-SNAPSHOT
pom
Gson Parent