diff --git a/CHANGELOG.md b/CHANGELOG.md index f7c60822d..47f172d1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. #### 2.x Releases +## [2.3.0](https://github.com/checkout/frames-ios/releases/tag/2.3.0) + +Released on 2018-09-18. + +#### Modified + +* Change the expiration date format. The expiration year is now 2 digits long (e.g. 19 for 2019). + +#### Fixed + +* Fixed UI Tests for iOS Custom. + ## [2.2.0](https://github.com/checkout/frames-ios/releases/tag/2.2.0) Released on 2018-07-23. diff --git a/Frames.podspec b/Frames.podspec index 4d64aa446..30c6acde2 100644 --- a/Frames.podspec +++ b/Frames.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Frames" - s.version = "2.2.2" + s.version = "2.3.0" s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift" s.description = <<-DESC Checkout API Client and Payment Form Utilities in Swift. diff --git a/README.md b/README.md index 589fa500c..821a10b7a 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ platform :ios, '10.0' use_frameworks! target '' do - pod 'Frames', '~> 2.2' + pod 'Frames', '~> 2.3' end ``` @@ -71,7 +71,7 @@ $ brew install carthage To integrate FramesIos into your Xcode project using Carthage, specify it in your `Cartfile`: ```ogdl -github "checkout/frames-ios" ~> 2.2 +github "checkout/frames-ios" ~> 2.3 ``` Run `carthage update` to build the framework and drag the built `FramesIos` into your Xcode project.