Skip to content

Commit

Permalink
version bump 5.1.0 (#1921)
Browse files Browse the repository at this point in the history
  • Loading branch information
mats-claassen committed Oct 2, 2019
1 parent 4c43dd7 commit bc6e1d0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

### [5.1.0](https://github.com/xmartlabs/Eureka/releases/tag/5.1.0)

* Support for Xcode 11 and iOS 13
* Added dark mode support

### [5.0.1](https://github.com/xmartlabs/Eureka/releases/tag/5.0.1)

* Added `quietly` parameter for use with non-ui validation (#1817)
Expand Down
2 changes: 1 addition & 1 deletion Eureka.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Eureka'
s.version = '5.0.1'
s.version = '5.1.0'
s.license = 'MIT'
s.summary = 'Elegant iOS Forms in pure Swift'
s.homepage = 'https://github.com/xmartlabs/Eureka'
Expand Down
2 changes: 2 additions & 0 deletions Eureka.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,7 @@
INFOPLIST_FILE = Source/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 5.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -763,6 +764,7 @@
INFOPLIST_FILE = Source/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 5.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ override func viewDidLoad() {
}
.cellUpdate { cell, row in
if !row.isValid {
cell.titleLabel?.textColor = .red
cell.titleLabel?.textColor = .systemRed
}
}

Expand All @@ -547,7 +547,7 @@ override func viewDidLoad() {
}
.cellUpdate { cell, row in
if !row.isValid {
cell.titleLabel?.textColor = .red
cell.titleLabel?.textColor = .systemRed
}
}

Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit bc6e1d0

Please sign in to comment.