mirror of
https://github.com/nicklockwood/SwiftFormat.git
synced 2026-05-17 10:30:35 +00:00
Update for 0.52.3 release
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
# Change Log
|
||||
|
||||
## [0.52.3](https://github.com/nicklockwood/SwiftFormat/releases/tag/0.52.3) (2023-09-02)
|
||||
|
||||
- Fixed incorrect hoisting of `try` inside multiline string literal interpolations
|
||||
- Fixed incorrect hoisting of `try` inside generic type initializer calls
|
||||
- Fixed case where parens were incorrectly removed around optional function calls
|
||||
- Fixed bug where early `return` statements added while debugging would be incorrectly removed
|
||||
|
||||
## [0.52.2](https://github.com/nicklockwood/SwiftFormat/releases/tag/0.52.2) (2023-08-19)
|
||||
|
||||
- Fixed static `Self` being incorrectly removed in `let` or `if let` expressions
|
||||
|
||||
Binary file not shown.
@@ -2,7 +2,7 @@
|
||||
// Formatter.swift
|
||||
// SwiftFormat
|
||||
//
|
||||
// Version 0.52.2
|
||||
// Version 0.52.3
|
||||
//
|
||||
// Created by Nick Lockwood on 12/08/2016.
|
||||
// Copyright 2016 Nick Lockwood
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
import Foundation
|
||||
|
||||
/// The current SwiftFormat version
|
||||
let swiftFormatVersion = "0.52.2"
|
||||
let swiftFormatVersion = "0.52.3"
|
||||
public let version = swiftFormatVersion
|
||||
|
||||
/// The standard SwiftFormat config file name
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Tokenizer.swift
|
||||
// SwiftFormat
|
||||
//
|
||||
// Version 0.52.2
|
||||
// Version 0.52.3
|
||||
//
|
||||
// Created by Nick Lockwood on 11/08/2016.
|
||||
// Copyright 2016 Nick Lockwood
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "SwiftFormat",
|
||||
"version": "0.52.2",
|
||||
"version": "0.52.3",
|
||||
"license": {
|
||||
"type": "MIT",
|
||||
"file": "LICENSE.md"
|
||||
@@ -10,7 +10,7 @@
|
||||
"authors": "Nick Lockwood",
|
||||
"source": {
|
||||
"git": "https://github.com/nicklockwood/SwiftFormat.git",
|
||||
"tag": "0.52.2"
|
||||
"tag": "0.52.3"
|
||||
},
|
||||
"default_subspecs": "Core",
|
||||
"subspecs": [
|
||||
|
||||
@@ -1111,7 +1111,7 @@
|
||||
"@loader_path/Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 0.52.2;
|
||||
MARKETING_VERSION = 0.52.3;
|
||||
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
|
||||
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.SwiftFormat;
|
||||
@@ -1144,7 +1144,7 @@
|
||||
"@loader_path/Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 0.52.2;
|
||||
MARKETING_VERSION = 0.52.3;
|
||||
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
|
||||
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.SwiftFormat;
|
||||
@@ -1251,7 +1251,7 @@
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 0.52.2;
|
||||
MARKETING_VERSION = 0.52.3;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode";
|
||||
PRODUCT_NAME = "SwiftFormat for Xcode";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
@@ -1282,7 +1282,7 @@
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 0.52.2;
|
||||
MARKETING_VERSION = 0.52.3;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode";
|
||||
PRODUCT_NAME = "SwiftFormat for Xcode";
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
@@ -1310,7 +1310,7 @@
|
||||
"@executable_path/../../../../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 0.52.2;
|
||||
MARKETING_VERSION = 0.52.3;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode.SourceEditorExtension";
|
||||
PRODUCT_NAME = SwiftFormat;
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
@@ -1340,7 +1340,7 @@
|
||||
"@executable_path/../../../../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
||||
MARKETING_VERSION = 0.52.2;
|
||||
MARKETING_VERSION = 0.52.3;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.charcoaldesign.SwiftFormat-for-Xcode.SourceEditorExtension";
|
||||
PRODUCT_NAME = SwiftFormat;
|
||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||
|
||||
Reference in New Issue
Block a user