Skip to content

Commit f2515c0

Browse files
committed
Merge branch 'release/4.12.1' into versions
2 parents cccf0b3 + 8ce227e commit f2515c0

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
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.12.0"
4+
s.version = "4.12.1"
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
3131
### Security
3232
- None.
3333

34+
## [4.12.1] - 2022-10-06
35+
### Fixed
36+
- Fixes an issue with linking of SwiftSyntaxParser. See [here](https://github.com/apple/swift-syntax/commit/4f33e361829415ab913778a582eda3ad682f81c1).
37+
3438
## [4.12.0] - 2022-09-25
3539
### Changed
3640
- Update SwiftSyntax dependency to Swift 5.7 to support Xcode 14.

Formula/bartycrouch.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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.11.0", :revision => "31c4cb250caae44dc3ab62c84becd3a85e55e8ad"
4+
url "https://github.com/Flinesoft/BartyCrouch.git", :tag => "4.12.0", :revision => "cccf0b38109f70ef0c84ad419dfb25c5b297a868"
55
head "https://github.com/Flinesoft/BartyCrouch.git"
66

7-
depends_on :xcode => ["13.3", :build]
7+
depends_on :xcode => ["14.0", :build]
88

99
def install
1010
system "make", "install", "prefix=#{prefix}"

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.50700.0")),
20+
.package(url: "https://github.com/apple/swift-syntax.git", .branch("0.50700.1")),
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
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.12.0-blue.svg"
18-
alt="Version: 4.12.0">
17+
<img src="https://img.shields.io/badge/Version-4.12.1-blue.svg"
18+
alt="Version: 4.12.1">
1919
</a>
2020
<img src="https://img.shields.io/badge/Swift-5.7-FFAC45.svg"
2121
alt="Swift: 5.7">

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.12.0",
8+
version: "4.12.1",
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.12.0</string>
18+
<string>4.12.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

0 commit comments

Comments
 (0)