diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b4b1d5c0..0d24614e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Change Log All notable changes to this project will be documented in this file. +### [1.5.0](https://github.com/xmartlabs/Eureka/releases/tag/1.5.0) + +* Xcode 7.3 support. +* Expose a public `KeyboardReturnTypeConfiguration` initializer. +* Allow to override constraints of FieldRow. +* Fixed SelectableSection wrong behaviour when the selectable rows was added to the section before adding the selectable section to the form. +* Implemented StepperRow and added an example to the example project. +* Allow AlertRow cancel title to be changed. +* Enabled CI UI testing and added some tests. +* Fixed "0 after decimal separator (DecimalRow)" +* Added ability to customize selector and multiple selector view controller option rows. Added `selectableRowCellUpdate` property to `SelectorViewController` and `MultipleSelectorViewController`. +* Performance improvement. Store values for each tag in a dictionary and do not calculate it every time we evaluateHidden. + ### [1.4.1](https://github.com/xmartlabs/Eureka/releases/tag/1.4.1) Released on 2016-02-25. diff --git a/Eureka.podspec b/Eureka.podspec index 92a537b45..53d3b6229 100644 --- a/Eureka.podspec +++ b/Eureka.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Eureka' - s.version = '1.4.1' + s.version = '1.5.0' s.license = 'MIT' s.summary = 'Elegant iOS Forms in pure Swift 2' s.homepage = 'https://github.com/xmartlabs/Eureka' diff --git a/README.md b/README.md index 28c3769b5..77f56edbb 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Platform iOS Swift 2 compatible Carthage compatible -CocoaPods compatible +CocoaPods compatible License: MIT codebeat badge

@@ -621,7 +621,7 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' use_frameworks! -pod 'Eureka', '~> 1.4' +pod 'Eureka', '~> 1.5' ``` Then run the following command: @@ -637,7 +637,7 @@ $ pod install Specify Eureka into your project's `Cartfile`: ```ogdl -github "xmartlabs/Eureka" ~> 1.4 +github "xmartlabs/Eureka" ~> 1.5 ``` #### Manually as Embedded Framework