diff --git a/CHANGELOG.md b/CHANGELOG.md
index 49ce00e..63204f4 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Change Log
+## [0.6.30](https://github.com/schibsted/layout/releases/tag/0.6.30) (2018-08-02)
+
+- Fixed a retain cycle that caused LayoutNodes to leak after a bounds change or scroll event
+
## [0.6.29](https://github.com/schibsted/layout/releases/tag/0.6.29) (2018-08-01)
- Fixed retain cycles in LayoutExpression and LayoutNode that caused nodes and views to be leaked
diff --git a/EditorExtension/Application/Info.plist b/EditorExtension/Application/Info.plist
index c27b27b..1751625 100644
--- a/EditorExtension/Application/Info.plist
+++ b/EditorExtension/Application/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.6.29
+ 0.6.30
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
LSMinimumSystemVersion
diff --git a/EditorExtension/Extension/Info.plist b/EditorExtension/Extension/Info.plist
index c98dd0b..3537f33 100644
--- a/EditorExtension/Extension/Info.plist
+++ b/EditorExtension/Extension/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
XPC!
CFBundleShortVersionString
- 0.6.29
+ 0.6.30
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
LSMinimumSystemVersion
diff --git a/Layout.podspec.json b/Layout.podspec.json
index bf05519..45e0324 100644
--- a/Layout.podspec.json
+++ b/Layout.podspec.json
@@ -1,6 +1,6 @@
{
"name": "Layout",
- "version": "0.6.29",
+ "version": "0.6.30",
"license": {
"type": "MIT",
"file": "LICENSE.md"
@@ -10,7 +10,7 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/schibsted/layout.git",
- "tag": "0.6.29"
+ "tag": "0.6.30"
},
"default_subspecs": "Core",
"subspecs": [
diff --git a/Layout/Info.plist b/Layout/Info.plist
index cc346b1..51d3515 100644
--- a/Layout/Info.plist
+++ b/Layout/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.6.29
+ 0.6.30
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/LayoutTool/main.swift b/LayoutTool/main.swift
index 78f4a2f..887bf2d 100644
--- a/LayoutTool/main.swift
+++ b/LayoutTool/main.swift
@@ -3,7 +3,7 @@
import Foundation
/// The current LayoutTool version
-let version = "0.6.29"
+let version = "0.6.30"
extension String {
var inDefault: String { return "\u{001B}[39m\(self)" }