Skip to content

Commit 870afc5

Browse files
Version bump 4.3.0 (#1080)
1 parent ded97b8 commit 870afc5

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
### Version 4.3.0:
5+
* Add datePicker style property to XLFormDateCell (#1078)
6+
47
### Version 4.2.0:
58
* Support for Swift Package Manager (#1073)
69
* Fix Carthage build (#1075)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ import XLForm // Swift
11501150
## CocoaPods
11511151

11521152
1. Add the following line in the project's Podfile file:
1153-
`pod 'XLForm', '~> 4.2'`.
1153+
`pod 'XLForm', '~> 4.3'`.
11541154
2. Run the command `pod install` from the Podfile folder directory.
11551155

11561156
XLForm **has no** dependencies over other pods.

XLForm.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'XLForm'
3-
s.version = '4.2.0'
3+
s.version = '4.3.0'
44
s.license = { :type => 'MIT' }
55
s.summary = 'XLForm is the most flexible and powerful iOS library to create dynamic table-view forms.'
66
s.description = <<-DESC

XLForm.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,13 +609,15 @@
609609
buildSettings = {
610610
CLANG_ENABLE_MODULES = YES;
611611
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
612+
CURRENT_PROJECT_VERSION = 1;
612613
DEFINES_MODULE = YES;
613614
DYLIB_COMPATIBILITY_VERSION = 1;
614615
DYLIB_CURRENT_VERSION = 1;
615616
DYLIB_INSTALL_NAME_BASE = "@rpath";
616617
INFOPLIST_FILE = XLForm/Info.plist;
617618
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
618619
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
620+
MARKETING_VERSION = 4.3.0;
619621
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.XLForm;
620622
PRODUCT_NAME = "$(TARGET_NAME)";
621623
SKIP_INSTALL = YES;
@@ -629,13 +631,15 @@
629631
buildSettings = {
630632
CLANG_ENABLE_MODULES = YES;
631633
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
634+
CURRENT_PROJECT_VERSION = 1;
632635
DEFINES_MODULE = YES;
633636
DYLIB_COMPATIBILITY_VERSION = 1;
634637
DYLIB_CURRENT_VERSION = 1;
635638
DYLIB_INSTALL_NAME_BASE = "@rpath";
636639
INFOPLIST_FILE = XLForm/Info.plist;
637640
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
638641
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
642+
MARKETING_VERSION = 4.3.0;
639643
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.XLForm;
640644
PRODUCT_NAME = "$(TARGET_NAME)";
641645
SKIP_INSTALL = YES;

XLForm/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>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)