Skip to content

Commit aa34bc8

Browse files
committed
Update for 0.55.6 release
1 parent 0548f0d commit aa34bc8

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [0.55.6](https://github.com/nicklockwood/SwiftFormat/releases/tag/0.55.6) (2025-04-29)
4+
5+
- Fixed parsing bugs related to parameter packs (`repeat`, `each` keywords)
6+
- Fixed bug where `propertyTypes` rule could cause build failure in properties with `some` type
7+
- Fixed but where `--callsiteparen balanced` would have no effect when using `--closingparen same-line`
8+
- Fatal error messages now include the name of the currently-running rule
9+
- Docker build now uses Swft 6.0.3
10+
311
## [0.55.5](https://github.com/nicklockwood/SwiftFormat/releases/tag/0.55.5) (2025-01-20)
412

513
- Fixed bug with `yodaConditions` rule mangling generic function calls

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ This is relevant only to maintainers:
7878
* Update version number in SwiftFormat.swift + 3 targets
7979
* Update CHANGELOG.md
8080
* Update SwiftFormat.podspec.json
81+
* Run tests and ensure they pass
8182
* Select SwiftFormat (Command Line Tool) and run Product > Archive
8283
* Replace binary in CommandLineTool directory
8384
* Select SwiftFormat for Xcode and run Product > Archive

CommandLineTool/swiftformat

-176 KB
Binary file not shown.

Sources/SwiftFormat.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import Foundation
3333

3434
/// The current SwiftFormat version
35-
let swiftFormatVersion = "0.55.5"
35+
let swiftFormatVersion = "0.55.6"
3636
public let version = swiftFormatVersion
3737

3838
/// The standard SwiftFormat config file name

SwiftFormat.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SwiftFormat",
3-
"version": "0.55.5",
3+
"version": "0.55.6",
44
"license": {
55
"type": "MIT",
66
"file": "LICENSE.md"
@@ -10,7 +10,7 @@
1010
"authors": "Nick Lockwood",
1111
"source": {
1212
"git": "https://github.com/nicklockwood/SwiftFormat.git",
13-
"tag": "0.55.5"
13+
"tag": "0.55.6"
1414
},
1515
"default_subspecs": "Core",
1616
"subspecs": [

SwiftFormat.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2679,7 +2679,7 @@
26792679
"@loader_path/Frameworks",
26802680
);
26812681
MACOSX_DEPLOYMENT_TARGET = 10.14;
2682-
MARKETING_VERSION = 0.55.5;
2682+
MARKETING_VERSION = 0.55.6;
26832683
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
26842684
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
26852685
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.SwiftFormat;
@@ -2711,7 +2711,7 @@
27112711
"@loader_path/Frameworks",
27122712
);
27132713
MACOSX_DEPLOYMENT_TARGET = 10.14;
2714-
MARKETING_VERSION = 0.55.5;
2714+
MARKETING_VERSION = 0.55.6;
27152715
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
27162716
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
27172717
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.SwiftFormat;
@@ -2815,7 +2815,7 @@
28152815
"@executable_path/../Frameworks",
28162816
);
28172817
MACOSX_DEPLOYMENT_TARGET = 10.14;
2818-
MARKETING_VERSION = 0.55.5;
2818+
MARKETING_VERSION = 0.55.6;
28192819
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode";
28202820
PRODUCT_NAME = "SwiftFormat for Xcode";
28212821
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2845,7 +2845,7 @@
28452845
"@executable_path/../Frameworks",
28462846
);
28472847
MACOSX_DEPLOYMENT_TARGET = 10.14;
2848-
MARKETING_VERSION = 0.55.5;
2848+
MARKETING_VERSION = 0.55.6;
28492849
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode";
28502850
PRODUCT_NAME = "SwiftFormat for Xcode";
28512851
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2873,7 +2873,7 @@
28732873
"@executable_path/../../../../Frameworks",
28742874
);
28752875
MACOSX_DEPLOYMENT_TARGET = 10.14;
2876-
MARKETING_VERSION = 0.55.5;
2876+
MARKETING_VERSION = 0.55.6;
28772877
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode.SourceEditorExtension";
28782878
PRODUCT_NAME = SwiftFormat;
28792879
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2902,7 +2902,7 @@
29022902
"@executable_path/../../../../Frameworks",
29032903
);
29042904
MACOSX_DEPLOYMENT_TARGET = 10.14;
2905-
MARKETING_VERSION = 0.55.5;
2905+
MARKETING_VERSION = 0.55.6;
29062906
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode.SourceEditorExtension";
29072907
PRODUCT_NAME = SwiftFormat;
29082908
PROVISIONING_PROFILE_SPECIFIER = "";

0 commit comments

Comments
 (0)