diff --git a/docs/modules/intro/pages/changelog.adoc b/docs/modules/intro/pages/changelog.adoc
index c63cf731..ad138ec3 100644
--- a/docs/modules/intro/pages/changelog.adoc
+++ b/docs/modules/intro/pages/changelog.adoc
@@ -1,5 +1,25 @@
= Changelog
+== 2.0.0
+
+=== Features
+
+* Additional Type Handlers https://github.com/eclipse-serializer/serializer/issues/72[[72]]
+* Enhanced Reloader https://github.com/eclipse-serializer/serializer/issues/135[[135]] https://github.com/eclipse-serializer/serializer/pull/136[[136]]
+* Various Storer Enhancements https://github.com/eclipse-serializer/serializer/pull/143[[143]]
+* Ensure Correct Inventorisation of S3 Directories https://github.com/eclipse-store/store/issues/250[[250]] https://github.com/eclipse-store/store/pull/270[[270]]
+
+=== Bugfixes
+
+* Adaptive Housekeeping Idle GC Fix https://github.com/eclipse-store/store/pull/293[[293]]
+* Lock File Manager Fixes https://github.com/eclipse-store/store/issues/281[[281]] https://github.com/eclipse-store/store/pull/282[[282]]
+* LazyHashMap Fix https://github.com/eclipse-serializer/serializer/issues/117[[117]] https://github.com/eclipse-serializer/serializer/pull/139[[139]]
+* Add Missing Constructor Methods for CSV Converter https://github.com/eclipse-store/store/pull/283[[283]]
+* Fix Intermittent Problem When Opening Database https://github.com/eclipse-store/store/issues/264[[264]]
+* Fix Type Handler Foundation Registration Order Necessity https://github.com/eclipse-serializer/serializer/pull/142[[142]] https://github.com/eclipse-store/store/issues/204[[204]]
+* Fix for Allocation of LazyArgs During Cleanup https://github.com/eclipse-serializer/serializer/issues/132[[132]] https://github.com/eclipse-serializer/serializer/pull/133[[133]]
+
+
== 1.4.0
=== Features
diff --git a/docs/modules/intro/pages/installation.adoc b/docs/modules/intro/pages/installation.adoc
index b6eb5c6c..69c59bb0 100644
--- a/docs/modules/intro/pages/installation.adoc
+++ b/docs/modules/intro/pages/installation.adoc
@@ -6,26 +6,11 @@ You can find the {product-name} libraries in the Maven Central repository.
[source, xml, subs=attributes+, title="Maven [pom.xml]"]
----
-
-
- ossrh
- https://oss.sonatype.org/content/repositories/snapshots
-
- false
-
-
- true
-
-
-
-
-
-
- org.eclipse.store
- storage-embedded
- {maven-version}
-
-
+
+ org.eclipse.store
+ storage-embedded
+ {maven-version}
+
----
[source, groovy, subs=attributes+, title="Gradle (Groovy) [build.gradle]"]
diff --git a/docs/modules/storage/pages/faq/file-storage.adoc b/docs/modules/storage/pages/faq/file-storage.adoc
index 9c70784b..5edad239 100644
--- a/docs/modules/storage/pages/faq/file-storage.adoc
+++ b/docs/modules/storage/pages/faq/file-storage.adoc
@@ -23,3 +23,8 @@ the process that currently runs the application.
Allowing another process to bypass these rules would eventually result in catastrophic consistency errors. +
The requirement to distribute an application over multiple processes must be solved by a clustering approach (e.g.
by distributing logic AND persistent data over multiple processes or by having one process to serve as the data master for multiple worker processes).
+
+== Is it possible to change the channel count of an existing storage?
+
+Yes.
+This can be done with the xref:addendum/tools.adoc#_storage_converter[converter tool].