Skip to content

Commit 67856b0

Browse files
committed
Bump version to 1.2.0
1 parent c324426 commit 67856b0

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.3.0] - 2021-03-13
6+
7+
### Changed
8+
9+
- Removed development dependencies from Swift Package definition.
10+
511
## [1.1.0] - 2020-09-05
612

713
### Changed
814

915
- Improved performance of arithmetic functions.
10-
- Removed `dynamic` specific from library product.
16+
- Removed `dynamic` specifier from library product.
1117

1218
## [1.0.0] - 2019-08-28
1319

RomanNumeralKit.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RomanNumeralKit"
3-
s.version = "1.1.0"
3+
s.version = "1.2.0"
44
s.license = "MIT"
55
s.summary = "First-class Roman numeral support for Swift."
66
s.homepage = "https://github.com/kylehughes/RomanNumeralKit"

RomanNumeralKit.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -606,14 +606,15 @@
606606
isa = XCBuildConfiguration;
607607
buildSettings = {
608608
CLANG_ENABLE_MODULES = YES;
609+
CURRENT_PROJECT_VERSION = 3;
609610
DEFINES_MODULE = YES;
610611
DYLIB_COMPATIBILITY_VERSION = 1;
611612
DYLIB_CURRENT_VERSION = 1;
612613
DYLIB_INSTALL_NAME_BASE = "@rpath";
613614
INFOPLIST_FILE = Sources/RomanNumeralKit/Info.plist;
614615
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
615616
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
616-
MARKETING_VERSION = 1.0.0;
617+
MARKETING_VERSION = 1.2.0;
617618
PRODUCT_BUNDLE_IDENTIFIER = es.kylehugh.RomanNumeralKit;
618619
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
619620
SKIP_INSTALL = NO;
@@ -626,14 +627,15 @@
626627
isa = XCBuildConfiguration;
627628
buildSettings = {
628629
CLANG_ENABLE_MODULES = YES;
630+
CURRENT_PROJECT_VERSION = 3;
629631
DEFINES_MODULE = YES;
630632
DYLIB_COMPATIBILITY_VERSION = 1;
631633
DYLIB_CURRENT_VERSION = 1;
632634
DYLIB_INSTALL_NAME_BASE = "@rpath";
633635
INFOPLIST_FILE = Sources/RomanNumeralKit/Info.plist;
634636
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
635637
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
636-
MARKETING_VERSION = 1.0.0;
638+
MARKETING_VERSION = 1.2.0;
637639
PRODUCT_BUNDLE_IDENTIFIER = es.kylehugh.RomanNumeralKit;
638640
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
639641
SKIP_INSTALL = NO;

Sources/RomanNumeralKit/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>$(MARKETING_VERSION)</string>
20+
<string>1.2.0</string>
2121
<key>CFBundleVersion</key>
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>NSPrincipalClass</key>

Tests/RomanNumeralKitTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

0 commit comments

Comments
 (0)