diff --git a/CHANGELOG.md b/CHANGELOG.md
index 789bc941f..c6a6f709e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,19 @@
## Pending changes
-- [#494](https://github.com/bumble-tech/appyx/pull/599) Added isContinuous flag to GestureFactory
+### Fixed
+
+- [#608](https://github.com/bumble-tech/appyx/pull/608) – Setting default value to NodeCustomisationDirectory in IosNodeHost
+
+## 2.0.0-alpha07
+
+### Added
+
+- [#601](https://github.com/bumble-tech/appyx/pull/601) – iOS support and target apps
+- [#599](https://github.com/bumble-tech/appyx/pull/599) Added isContinuous flag to GestureFactory
+
+
4 Oct 2023
+
## 2.0.0-alpha06
@@ -19,7 +31,6 @@
### Added
- [#579](https://github.com/bumble-tech/appyx/pull/579) – Expose `AndroidLifecycle` in `PlatformLifecycleRegistry` for Android
-- [#601](https://github.com/bumble-tech/appyx/pull/601) – iOS support and target apps
### Fixed
diff --git a/appyx-navigation/common/src/iosMain/kotlin/com/bumble/appyx/navigation/integration/IosNodeHost.kt b/appyx-navigation/common/src/iosMain/kotlin/com/bumble/appyx/navigation/integration/IosNodeHost.kt
index 6a03191ef..c77297b5c 100644
--- a/appyx-navigation/common/src/iosMain/kotlin/com/bumble/appyx/navigation/integration/IosNodeHost.kt
+++ b/appyx-navigation/common/src/iosMain/kotlin/com/bumble/appyx/navigation/integration/IosNodeHost.kt
@@ -26,7 +26,7 @@ fun IosNodeHost(
onBackPressedEvents: Flow,
modifier: Modifier = Modifier,
integrationPoint: IntegrationPoint,
- customisations: NodeCustomisationDirectory = remember { NodeCustomisationDirectoryImpl() },
+ customisations: NodeCustomisationDirectory = remember { NodeCustomisationDirectoryImpl(null) },
factory: NodeFactory,
) {
val platformLifecycleRegistry = remember {
diff --git a/gradle.properties b/gradle.properties
index 064bb50ec..3606b8f48 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -5,7 +5,7 @@ android.useAndroidX=true
kotlin.code.style=official
kotlin.mpp.androidSourceSetLayoutVersion1.nowarn=true
kotlin.native.enableDependencyPropagation=false
-library.version=2.0.0-alpha06
+library.version=2.0.0-alpha07
org.gradle.caching=true
org.gradle.jvmargs=-Xmx8192m -Dfile.encoding=UTF-8
org.gradle.parallel=true