Skip to content

Commit

Permalink
Updated for 0.6.30 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Aug 2, 2018
1 parent eca5f65 commit fb2170b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Application/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.29</string>
<string>0.6.30</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Extension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>0.6.29</string>
<string>0.6.30</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Layout.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Layout",
"version": "0.6.29",
"version": "0.6.30",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion Layout/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.6.29</string>
<string>0.6.30</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion LayoutTool/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)" }
Expand Down

0 comments on commit fb2170b

Please sign in to comment.