File tree Expand file tree Collapse file tree 5 files changed +10
-3
lines changed Expand file tree Collapse file tree 5 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ### Version 4.3.0:
5
+ * Add datePicker style property to XLFormDateCell (#1078 )
6
+
4
7
### Version 4.2.0:
5
8
* Support for Swift Package Manager (#1073 )
6
9
* Fix Carthage build (#1075 )
Original file line number Diff line number Diff line change @@ -1150,7 +1150,7 @@ import XLForm // Swift
1150
1150
## CocoaPods
1151
1151
1152
1152
1 . Add the following line in the project's Podfile file:
1153
- ` pod 'XLForm', '~> 4.2 ' ` .
1153
+ ` pod 'XLForm', '~> 4.3 ' ` .
1154
1154
2 . Run the command ` pod install ` from the Podfile folder directory.
1155
1155
1156
1156
XLForm ** has no** dependencies over other pods.
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'XLForm'
3
- s . version = '4.2 .0'
3
+ s . version = '4.3 .0'
4
4
s . license = { :type => 'MIT' }
5
5
s . summary = 'XLForm is the most flexible and powerful iOS library to create dynamic table-view forms.'
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change 609
609
buildSettings = {
610
610
CLANG_ENABLE_MODULES = YES;
611
611
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
612
+ CURRENT_PROJECT_VERSION = 1;
612
613
DEFINES_MODULE = YES;
613
614
DYLIB_COMPATIBILITY_VERSION = 1;
614
615
DYLIB_CURRENT_VERSION = 1;
615
616
DYLIB_INSTALL_NAME_BASE = "@rpath";
616
617
INFOPLIST_FILE = XLForm/Info.plist;
617
618
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
618
619
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
620
+ MARKETING_VERSION = 4.3.0;
619
621
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.XLForm;
620
622
PRODUCT_NAME = "$(TARGET_NAME)";
621
623
SKIP_INSTALL = YES;
629
631
buildSettings = {
630
632
CLANG_ENABLE_MODULES = YES;
631
633
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
634
+ CURRENT_PROJECT_VERSION = 1;
632
635
DEFINES_MODULE = YES;
633
636
DYLIB_COMPATIBILITY_VERSION = 1;
634
637
DYLIB_CURRENT_VERSION = 1;
635
638
DYLIB_INSTALL_NAME_BASE = "@rpath";
636
639
INFOPLIST_FILE = XLForm/Info.plist;
637
640
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
638
641
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
642
+ MARKETING_VERSION = 4.3.0;
639
643
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.XLForm;
640
644
PRODUCT_NAME = "$(TARGET_NAME)";
641
645
SKIP_INSTALL = YES;
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >1.0 </string >
18
+ <string >$(MARKETING_VERSION) </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
You can’t perform that action at this time.
0 commit comments