Skip to content

Commit cdf146a

Browse files
committed
Bump version to 4.2.1
1 parent e4e393b commit cdf146a

File tree

5 files changed

+18
-15
lines changed

5 files changed

+18
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [4.2.1] - 2025-12-19
11+
1012
### Fixed
1113
- Optimized `Entry.plainText` concatenation for better performance. ([#86](https://github.com/onevcat/Rainbow/pull/86))
1214

@@ -94,3 +96,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9496
[2.0.1]: https://github.com/onevcat/Rainbow/releases/tag/2.0.1
9597
[2.0.0]: https://github.com/onevcat/Rainbow/releases/tag/2.0.0
9698
[1.1.0]: https://github.com/onevcat/Rainbow/releases/tag/1.1.0
99+
[4.2.1]: https://github.com/onevcat/Rainbow/releases/tag/1.1.0

Rainbow.xcodeproj/project.pbxproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@
541541
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
542542
DEFINES_MODULE = YES;
543543
DYLIB_COMPATIBILITY_VERSION = 1;
544-
DYLIB_CURRENT_VERSION = 252;
544+
DYLIB_CURRENT_VERSION = 263;
545545
DYLIB_INSTALL_NAME_BASE = "@rpath";
546546
ENABLE_MODULE_VERIFIER = YES;
547547
INFOPLIST_FILE = Support/Info.plist;
@@ -569,7 +569,7 @@
569569
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
570570
DEFINES_MODULE = YES;
571571
DYLIB_COMPATIBILITY_VERSION = 1;
572-
DYLIB_CURRENT_VERSION = 252;
572+
DYLIB_CURRENT_VERSION = 263;
573573
DYLIB_INSTALL_NAME_BASE = "@rpath";
574574
ENABLE_MODULE_VERIFIER = YES;
575575
INFOPLIST_FILE = Support/Info.plist;
@@ -600,7 +600,7 @@
600600
CODE_SIGN_IDENTITY = "";
601601
DEFINES_MODULE = YES;
602602
DYLIB_COMPATIBILITY_VERSION = 1;
603-
DYLIB_CURRENT_VERSION = 252;
603+
DYLIB_CURRENT_VERSION = 263;
604604
DYLIB_INSTALL_NAME_BASE = "@rpath";
605605
ENABLE_MODULE_VERIFIER = YES;
606606
INFOPLIST_FILE = Support/Info.plist;
@@ -628,7 +628,7 @@
628628
CODE_SIGN_IDENTITY = "";
629629
DEFINES_MODULE = YES;
630630
DYLIB_COMPATIBILITY_VERSION = 1;
631-
DYLIB_CURRENT_VERSION = 252;
631+
DYLIB_CURRENT_VERSION = 263;
632632
DYLIB_INSTALL_NAME_BASE = "@rpath";
633633
ENABLE_MODULE_VERIFIER = YES;
634634
INFOPLIST_FILE = Support/Info.plist;
@@ -658,7 +658,7 @@
658658
CODE_SIGN_IDENTITY = "";
659659
DEFINES_MODULE = YES;
660660
DYLIB_COMPATIBILITY_VERSION = 1;
661-
DYLIB_CURRENT_VERSION = 252;
661+
DYLIB_CURRENT_VERSION = 263;
662662
DYLIB_INSTALL_NAME_BASE = "@rpath";
663663
ENABLE_MODULE_VERIFIER = YES;
664664
INFOPLIST_FILE = "$(SRCROOT)/Support/Info.plist";
@@ -685,7 +685,7 @@
685685
CODE_SIGN_IDENTITY = "";
686686
DEFINES_MODULE = YES;
687687
DYLIB_COMPATIBILITY_VERSION = 1;
688-
DYLIB_CURRENT_VERSION = 252;
688+
DYLIB_CURRENT_VERSION = 263;
689689
DYLIB_INSTALL_NAME_BASE = "@rpath";
690690
ENABLE_MODULE_VERIFIER = YES;
691691
INFOPLIST_FILE = "$(SRCROOT)/Support/Info.plist";
@@ -740,7 +740,7 @@
740740
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
741741
CODE_SIGN_IDENTITY = "-";
742742
COPY_PHASE_STRIP = NO;
743-
CURRENT_PROJECT_VERSION = 252;
743+
CURRENT_PROJECT_VERSION = 263;
744744
DEAD_CODE_STRIPPING = YES;
745745
DEBUG_INFORMATION_FORMAT = dwarf;
746746
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -805,7 +805,7 @@
805805
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
806806
CODE_SIGN_IDENTITY = "-";
807807
COPY_PHASE_STRIP = NO;
808-
CURRENT_PROJECT_VERSION = 252;
808+
CURRENT_PROJECT_VERSION = 263;
809809
DEAD_CODE_STRIPPING = YES;
810810
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
811811
ENABLE_NS_ASSERTIONS = NO;
@@ -840,7 +840,7 @@
840840
DEAD_CODE_STRIPPING = YES;
841841
DEFINES_MODULE = YES;
842842
DYLIB_COMPATIBILITY_VERSION = 1;
843-
DYLIB_CURRENT_VERSION = 252;
843+
DYLIB_CURRENT_VERSION = 263;
844844
DYLIB_INSTALL_NAME_BASE = "@rpath";
845845
ENABLE_MODULE_VERIFIER = YES;
846846
FRAMEWORK_VERSION = A;
@@ -870,7 +870,7 @@
870870
DEAD_CODE_STRIPPING = YES;
871871
DEFINES_MODULE = YES;
872872
DYLIB_COMPATIBILITY_VERSION = 1;
873-
DYLIB_CURRENT_VERSION = 252;
873+
DYLIB_CURRENT_VERSION = 263;
874874
DYLIB_INSTALL_NAME_BASE = "@rpath";
875875
ENABLE_MODULE_VERIFIER = YES;
876876
FRAMEWORK_VERSION = A;

RainbowSwift.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 = "RainbowSwift"
4-
s.version = "4.2.0"
4+
s.version = "4.2.1"
55
s.summary = "`Rainbow` adds text color, background color and style for console and command line output in Swift."
66

77
s.description = <<-DESC

Support/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.2.0</string>
18+
<string>4.2.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>252</string>
22+
<string>263</string>
2323
<key>NSHumanReadableCopyright</key>
2424
<string>Copyright © 2015年 OneV's Den. All rights reserved.</string>
2525
<key>NSPrincipalClass</key>

Tests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.2.0</string>
18+
<string>4.2.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>252</string>
22+
<string>263</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)