Skip to content

Commit

Permalink
Updated for 0.5.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Oct 31, 2017
1 parent 7591c26 commit a410461
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Change Log

## [0.5.8](https://github.com/schibsted/layout/releases/tag/0.5.8) (2017-10-31)

- Fixed layout glitch after live reloading `UIStackView`-based layouts
- Font expressions now support additional weights such as `black` and `ultralight`
- Minor breaking change when creating bold system fonts in font expressions. See README.md for details
- Unicode characters in attributedString expressions or inline HTML are no longer mangled
- Fixed bug where source file loading errors were sometimes not reported
- Fixed bug where `.layout-ignore` file paths could sometimes be ignored
- Improved AnyExpression implementation and test coverage
- Fixed bug with loading files in paths containing a period

## [0.5.7](https://github.com/schibsted/layout/releases/tag/0.5.7) (2017-10-26)

- Fixed bug where `UIBarButtonItem.image` could not be set using expressions
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Application/Info.plist
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.5.7</string>
<string>0.5.8</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EditorExtension/Extension/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>0.5.7</string>
<string>0.5.8</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSMinimumSystemVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions Layout.podspec.json
@@ -1,6 +1,6 @@
{
"name": "Layout",
"version": "0.5.7",
"version": "0.5.8",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -10,13 +10,13 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/schibsted/layout.git",
"tag": "0.5.7"
"tag": "0.5.8"
},
"default_subspecs": "Core",
"subspecs": [
{
"name": "Core",
"source_files": "Layout"
"source_files": "Layout/**/*"
},
{
"name": "CLI",
Expand Down
2 changes: 1 addition & 1 deletion Layout/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.5.7</string>
<string>0.5.8</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion LayoutTool/main.swift
Expand Up @@ -3,7 +3,7 @@
import Foundation

/// The current LayoutTool version
let version = "0.5.7"
let version = "0.5.8"

extension String {
var inDefault: String { return "\u{001B}[39m\(self)" }
Expand Down

0 comments on commit a410461

Please sign in to comment.