Skip to content

Commit a81a6ab

Browse files
committed
Merge branch 'release/4.14.2' into versions
2 parents 6632e30 + efa0f88 commit a81a6ab

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

BartyCrouch.podspec

Lines changed: 3 additions & 4 deletions
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.14.1"
4+
s.version = "4.14.2"
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
@@ -20,10 +20,9 @@ Pod::Spec.new do |s|
2020
s.source = { :http => "#{s.homepage}/releases/download/#{s.version}/portable_bartycrouch.zip" }
2121
s.preserve_paths = "*"
2222

23-
s.ios.deployment_target = '9.0'
23+
s.ios.deployment_target = '11.0'
2424
s.macos.deployment_target = '13.0'
25-
s.tvos.deployment_target = '9.0'
26-
s.watchos.deployment_target = '2.0'
25+
s.tvos.deployment_target = '11.0'
2726
s.swift_version = '5.7'
2827

2928
end

Makefile

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,18 @@ install: bartycrouch
4040

4141
.PHONY: portable_zip
4242
portable_zip: bartycrouch_universal
43-
rm -f "$(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip"
44-
zip -j "$(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip" \
45-
"$(BUILDDIR)/Apple/Products/Release/bartycrouch" \
43+
@rm -f "$(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip"
44+
45+
$(eval TMP := $(shell mktemp -d))
46+
@cp "$(BUILDDIR)/Apple/Products/Release/bartycrouch" "$(TMP)/bartycrouch"
47+
@install_name_tool -add_rpath "@executable_path/." "$(TMP)/bartycrouch"
48+
49+
@zip -q -j "$(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip" \
50+
"$(TMP)/bartycrouch" \
4651
"$(REPODIR)/LICENSE" \
4752
".build/artifacts/swift-syntax/_InternalSwiftSyntaxParser.xcframework/macos-arm64_x86_64/lib_InternalSwiftSyntaxParser.dylib"
48-
echo "Portable ZIP created at: $(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip"
53+
@echo "Portable ZIP created at: $(BUILDDIR)/Apple/Products/Release/portable_bartycrouch.zip"
54+
@rm -rf $(TMP)
4955

5056
.PHONY: uninstall
5157
uninstall:

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

0 commit comments

Comments
 (0)