diff --git a/CHANGELOG.md b/CHANGELOG.md index a224bb80f..e21e68b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ # Change Log All notable changes to this project will be documented in this file. +### [5.3.1](https://github.com/xmartlabs/Eureka/releases/tag/5.3.1) + +* Fix building for Mac Catalyst on Xcode 12 (#2078) +* Fix datePickerStyle for DateFieldRow and DatePickerCell (#2077) +* Adjust font size of PasswordRow to avoid dots (#2080) ### [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) diff --git a/Eureka.podspec b/Eureka.podspec index fa8d9104f..567f0ea61 100644 --- a/Eureka.podspec +++ b/Eureka.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Eureka' - s.version = '5.3.0' + s.version = '5.3.1' s.license = 'MIT' s.summary = 'Elegant iOS Forms in pure Swift' s.homepage = 'https://github.com/xmartlabs/Eureka' diff --git a/Eureka.xcodeproj/project.pbxproj b/Eureka.xcodeproj/project.pbxproj index 40f1a8267..46298c2ab 100644 --- a/Eureka.xcodeproj/project.pbxproj +++ b/Eureka.xcodeproj/project.pbxproj @@ -729,7 +729,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.3.0; + MARKETING_VERSION = 5.3.1; PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; @@ -753,7 +753,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.3.0; + MARKETING_VERSION = 5.3.1; PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; diff --git a/README.md b/README.md index 3175717e2..f7b07b9d8 100644 --- a/README.md +++ b/README.md @@ -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.3.0") + .package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.3.1") ]