Skip to content

Commit 507d63f

Browse files
committed
Update for 0.51.15 release
1 parent 9136609 commit 507d63f

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [0.51.15](https://github.com/nicklockwood/SwiftFormat/releases/tag/0.51.15) (2023-08-06)
4+
5+
- This release actually includes the fixes listed for 0.51.14 (these were accidentally reverted in a merge error).
6+
37
## [0.51.14](https://github.com/nicklockwood/SwiftFormat/releases/tag/0.51.14) (2023-08-05)
48

59
- Fixed regression in `unusedArguments` rule that caused used parameters to be marked unused

CommandLineTool/swiftformat

0 Bytes
Binary file not shown.

Sources/Formatter.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Formatter.swift
33
// SwiftFormat
44
//
5-
// Version 0.51.14
5+
// Version 0.51.15
66
//
77
// Created by Nick Lockwood on 12/08/2016.
88
// Copyright 2016 Nick Lockwood

Sources/SwiftFormat.swift

+1-1
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.51.14"
35+
let swiftFormatVersion = "0.51.15"
3636
public let version = swiftFormatVersion
3737

3838
/// The standard SwiftFormat config file name

Sources/Tokenizer.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Tokenizer.swift
33
// SwiftFormat
44
//
5-
// Version 0.51.14
5+
// Version 0.51.15
66
//
77
// Created by Nick Lockwood on 11/08/2016.
88
// Copyright 2016 Nick Lockwood

SwiftFormat.podspec.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SwiftFormat",
3-
"version": "0.51.14",
3+
"version": "0.51.15",
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.51.14"
13+
"tag": "0.51.15"
1414
},
1515
"default_subspecs": "Core",
1616
"subspecs": [

SwiftFormat.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@
11111111
"@loader_path/Frameworks",
11121112
);
11131113
MACOSX_DEPLOYMENT_TARGET = 10.14;
1114-
MARKETING_VERSION = 0.51.14;
1114+
MARKETING_VERSION = 0.51.15;
11151115
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
11161116
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
11171117
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.SwiftFormat;
@@ -1144,7 +1144,7 @@
11441144
"@loader_path/Frameworks",
11451145
);
11461146
MACOSX_DEPLOYMENT_TARGET = 10.14;
1147-
MARKETING_VERSION = 0.51.14;
1147+
MARKETING_VERSION = 0.51.15;
11481148
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
11491149
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
11501150
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.SwiftFormat;
@@ -1251,7 +1251,7 @@
12511251
"@executable_path/../Frameworks",
12521252
);
12531253
MACOSX_DEPLOYMENT_TARGET = 10.14;
1254-
MARKETING_VERSION = 0.51.14;
1254+
MARKETING_VERSION = 0.51.15;
12551255
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode";
12561256
PRODUCT_NAME = "SwiftFormat for Xcode";
12571257
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1282,7 +1282,7 @@
12821282
"@executable_path/../Frameworks",
12831283
);
12841284
MACOSX_DEPLOYMENT_TARGET = 10.14;
1285-
MARKETING_VERSION = 0.51.14;
1285+
MARKETING_VERSION = 0.51.15;
12861286
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode";
12871287
PRODUCT_NAME = "SwiftFormat for Xcode";
12881288
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1310,7 +1310,7 @@
13101310
"@executable_path/../../../../Frameworks",
13111311
);
13121312
MACOSX_DEPLOYMENT_TARGET = 10.14;
1313-
MARKETING_VERSION = 0.51.14;
1313+
MARKETING_VERSION = 0.51.15;
13141314
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode.SourceEditorExtension";
13151315
PRODUCT_NAME = SwiftFormat;
13161316
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1340,7 +1340,7 @@
13401340
"@executable_path/../../../../Frameworks",
13411341
);
13421342
MACOSX_DEPLOYMENT_TARGET = 10.14;
1343-
MARKETING_VERSION = 0.51.14;
1343+
MARKETING_VERSION = 0.51.15;
13441344
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode.SourceEditorExtension";
13451345
PRODUCT_NAME = SwiftFormat;
13461346
PROVISIONING_PROFILE_SPECIFIER = "";

0 commit comments

Comments
 (0)