Skip to content

Commit

Permalink
Version bump 5.3.0 (#2074)
Browse files Browse the repository at this point in the history
  • Loading branch information
mats-claassen committed Sep 15, 2020
1 parent 6c6f4a5 commit af6d998
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Change Log
All notable changes to this project will be documented in this file.


### [5.3.0](https://github.com/xmartlabs/Eureka/releases/tag/5.3.0)
* Reload rows on viewWillAppear for iOS 12 and below. (#2029)
* Change validation functions access level to open (#2049)
* Start editing field rows at the end when tapping blank space in row (#2046)
* Update SelectorViewController.swift (#2062)
* Fix subtitle field row constraints (#2069)
* Create a workaround for Swift crash (#2057, #2061)
* Fix date row style/rendering issues for iOS14 (#2067)

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

* Mark `tableView:editActionsForRowAt` as deprecated (#2000)
Expand All @@ -27,7 +37,7 @@ All notable changes to this project will be documented in this file.
### [5.0.1](https://github.com/xmartlabs/Eureka/releases/tag/5.0.1)

* Added `quietly` parameter for use with non-ui validation (#1817)
* RuleMinLength (and others) now pass for nil and empty strings.
* RuleMinLength (and others) now pass for nil and empty strings.
* iOS deployment target back on iOS 9.0
* Several other fixes

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.2.1'
s.version = '5.3.0'
s.license = 'MIT'
s.summary = 'Elegant iOS Forms in pure Swift'
s.homepage = 'https://github.com/xmartlabs/Eureka'
Expand Down
4 changes: 2 additions & 2 deletions Eureka.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,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.2.1;
MARKETING_VERSION = 5.3.0;
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -751,7 +751,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.2.1;
MARKETING_VERSION = 5.3.0;
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Made with ❤️ by [XMARTLABS](http://xmartlabs.com). This is the re-creation o
## Requirements (for latest release)

* Xcode 11+
* Swift 5.0+
* Swift 5.0+

### Example project

Expand Down Expand Up @@ -1075,7 +1075,7 @@ $ pod install
After you set up your `Package.swift` manifest file, you can add Eureka as a dependency by adding it to the dependencies value of your `Package.swift`.

dependencies: [
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.2.1")
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.3.0")
]


Expand All @@ -1086,7 +1086,7 @@ dependencies: [
Specify Eureka into your project's `Cartfile`:

```ogdl
github "xmartlabs/Eureka" ~> 5.2
github "xmartlabs/Eureka" ~> 5.3
```

#### Manually as Embedded Framework
Expand Down

0 comments on commit af6d998

Please sign in to comment.