Skip to content

Commit cccf0b3

Browse files
committed
Merge branch 'release/4.12.0' into versions
2 parents 31c4cb2 + e8caf61 commit cccf0b3

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

BartyCrouch.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "BartyCrouch"
4-
s.version = "4.11.0"
4+
s.version = "4.12.0"
55
s.summary = "Localization/I18n: Incrementally update/translate your Strings files from .swift, .h, .m(m), .storyboard or .xib files."
66

77
s.description = <<-DESC

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
3131
### Security
3232
- None.
3333

34+
## [4.12.0] - 2022-09-25
35+
### Changed
36+
- Update SwiftSyntax dependency to Swift 5.7 to support Xcode 14.
37+
Issues: [#201](https://github.com/FlineDev/BartyCrouch/issues/201), [#262](https://github.com/FlineDev/BartyCrouch/pull/262) | Author: [Texot](https://github.com/tete1030)
38+
3439
## [4.11.0] - 2022-05-27
3540
### Added
3641
- Adds new `separateWithEmptyLine` options to allow removing the empty line between Strings entries.

Formula/bartycrouch.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Bartycrouch < Formula
22
desc "Incrementally update/translate your Strings files"
33
homepage "https://github.com/Flinesoft/BartyCrouch"
4-
url "https://github.com/Flinesoft/BartyCrouch.git", :tag => "4.10.2", :revision => "8e12d831b2cb84c05c94a715815139e76f6a7b64"
4+
url "https://github.com/Flinesoft/BartyCrouch.git", :tag => "4.11.0", :revision => "31c4cb250caae44dc3ab62c84becd3a85e55e8ad"
55
head "https://github.com/Flinesoft/BartyCrouch.git"
66

77
depends_on :xcode => ["13.3", :build]

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let package = Package(
1717
.package(name: "Rainbow", url: "https://github.com/onevcat/Rainbow.git", from: "3.1.5"),
1818
.package(name: "SwiftCLI", url: "https://github.com/jakeheis/SwiftCLI.git", from: "6.0.3"),
1919
.package(name: "Toml", url: "https://github.com/jdfergason/swift-toml.git", .branch("master")),
20-
.package(url: "https://github.com/apple/swift-syntax.git", .exact("0.50600.1")),
20+
.package(url: "https://github.com/apple/swift-syntax.git", .exact("0.50700.0")),
2121

2222
// A collection of tools for debugging, diffing, and testing your application's data structures.
2323
.package(url: "https://github.com/pointfreeco/swift-custom-dump.git", from: "0.3.0"),

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
<img src="https://api.codacy.com/project/badge/Coverage/7b34ad9193c2438aa32aa29a0490451f"/>
1515
</a>
1616
<a href="https://github.com/FlineDev/BartyCrouch/releases">
17-
<img src="https://img.shields.io/badge/Version-4.11.0-blue.svg"
18-
alt="Version: 4.11.0">
17+
<img src="https://img.shields.io/badge/Version-4.12.0-blue.svg"
18+
alt="Version: 4.12.0">
1919
</a>
20-
<img src="https://img.shields.io/badge/Swift-5.6-FFAC45.svg"
21-
alt="Swift: 5.6">
20+
<img src="https://img.shields.io/badge/Swift-5.7-FFAC45.svg"
21+
alt="Swift: 5.7">
2222
<a href="https://github.com/FlineDev/BartyCrouch/blob/main/LICENSE.md">
2323
<img src="https://img.shields.io/badge/License-MIT-lightgrey.svg"
2424
alt="License: MIT">

Sources/BartyCrouch/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import SwiftCLI
55
// MARK: - CLI
66
let cli = CLI(
77
name: "bartycrouch",
8-
version: "4.11.0",
8+
version: "4.12.0",
99
description: "Incrementally update & translate your Strings files from code or interface files."
1010
)
1111

Sources/SupportingFiles/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.11.0</string>
18+
<string>4.12.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

0 commit comments

Comments
 (0)