Skip to content

Commit

Permalink
Update for 0.13.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Jan 4, 2024
1 parent 6b25668 commit 81e8f21
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 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.13.8](https://github.com/nicklockwood/Expression/releases/tag/0.13.8) (2024-01-04)

- Fix precedence for (^) exponent operator

## [0.13.7](https://github.com/nicklockwood/Expression/releases/tag/0.13.7) (2023-02-21)

- Fixed String.Index crash on macOS 13 / Swift 5.7
Expand Down
4 changes: 2 additions & 2 deletions Expression.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Expression",
"version": "0.13.7",
"version": "0.13.8",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -10,7 +10,7 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/nicklockwood/Expression.git",
"tag": "0.13.7"
"tag": "0.13.8"
},
"source_files": "Sources",
"requires_arc": true,
Expand Down
8 changes: 4 additions & 4 deletions Expression.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.13.7;
MARKETING_VERSION = 0.13.8;
PRODUCT_BUNDLE_IDENTIFIER = com.Expression;
PRODUCT_NAME = Expression;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -1104,7 +1104,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.13.7;
MARKETING_VERSION = 0.13.8;
PRODUCT_BUNDLE_IDENTIFIER = com.Expression;
PRODUCT_NAME = Expression;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -1259,7 +1259,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 0.13.7;
MARKETING_VERSION = 0.13.8;
PRODUCT_BUNDLE_IDENTIFIER = com.Expression;
PRODUCT_NAME = Expression;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1289,7 +1289,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 0.13.7;
MARKETING_VERSION = 0.13.8;
PRODUCT_BUNDLE_IDENTIFIER = com.Expression;
PRODUCT_NAME = Expression;
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion Sources/AnyExpression.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// AnyExpression.swift
// Expression
//
// Version 0.13.7
// Version 0.13.8
//
// Created by Nick Lockwood on 18/04/2017.
// Copyright © 2017 Nick Lockwood. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion Sources/Expression.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Expression.swift
// Expression
//
// Version 0.13.7
// Version 0.13.8
//
// Created by Nick Lockwood on 15/09/2016.
// Copyright © 2016 Nick Lockwood. All rights reserved.
Expand Down

0 comments on commit 81e8f21

Please sign in to comment.