From df9d8234eb5d4fa571a43a354256ac282a1a0053 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 9 Oct 2017 11:28:34 +0800 Subject: [PATCH] Bump version to 1.2.0 --- .jazzy.yml | 2 +- CHANGELOG.md | 2 +- Example/Pickle/Info.plist | 2 +- Example/Podfile.lock | 4 +- .../Target Support Files/Pickle/Info.plist | 2 +- Example/UITests/Info.plist | 2 +- Pickle.podspec | 2 +- README.md | 41 ++++++++++--------- 8 files changed, 29 insertions(+), 28 deletions(-) diff --git a/.jazzy.yml b/.jazzy.yml index 7149373..2e2c049 100644 --- a/.jazzy.yml +++ b/.jazzy.yml @@ -5,6 +5,6 @@ github_url: https://github.com/carousell/pickle github_file_prefix: https://github.com/carousell/pickle/blob/master xcodebuild_arguments: [-project, Example/Pods/Pods.xcodeproj, -scheme, Pickle] module: Pickle -module_version: 1.1.0 +module_version: 1.2.0 output: docs/output theme: fullwidth diff --git a/CHANGELOG.md b/CHANGELOG.md index 67c8eb4..0013ce1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## Next Release +## v1.2.0 * Drop iOS 8 support [#13](https://github.com/carousell/pickle/pull/13) * Rename `imagePickerController(_:didDeselectImageAsset:)` [#12](https://github.com/carousell/pickle/pull/12) diff --git a/Example/Pickle/Info.plist b/Example/Pickle/Info.plist index 7d307b1..756b0ed 100644 --- a/Example/Pickle/Info.plist +++ b/Example/Pickle/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.0 + 1.2.0 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Podfile.lock b/Example/Podfile.lock index bd07007..585cca2 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - Pickle (1.1.0) + - Pickle (1.2.0) - SwiftLint (0.18.1) DEPENDENCIES: @@ -11,7 +11,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - Pickle: 5cc73fe4845a18e9ae521f72e53950cff1c10316 + Pickle: 80f99c9377a2785e48bd5c3ad061e7f614120312 SwiftLint: b467d08f5b25dc3b3cfed243d8e1b74b91714c67 PODFILE CHECKSUM: 83c0411086be0ec4861900c45c98a441a46c6431 diff --git a/Example/Pods/Target Support Files/Pickle/Info.plist b/Example/Pods/Target Support Files/Pickle/Info.plist index 21a30b4..2a9158a 100644 --- a/Example/Pods/Target Support Files/Pickle/Info.plist +++ b/Example/Pods/Target Support Files/Pickle/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.1.0 + 1.2.0 CFBundleSignature ???? CFBundleVersion diff --git a/Example/UITests/Info.plist b/Example/UITests/Info.plist index 81ba60e..6b71ce2 100644 --- a/Example/UITests/Info.plist +++ b/Example/UITests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.1.0 + 1.2.0 CFBundleVersion 1 diff --git a/Pickle.podspec b/Pickle.podspec index ddd3edc..5af7486 100644 --- a/Pickle.podspec +++ b/Pickle.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Pickle' - s.version = '1.1.0' + s.version = '1.2.0' s.summary = 'Carousell flavoured image picker with multiple photo selections.' s.homepage = 'https://github.com/carousell/pickle' s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' } diff --git a/README.md b/README.md index 270d782..232c2f8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Pickle.svg)](https://cocoapods.org/pods/Pickle) ![Platform](https://img.shields.io/cocoapods/p/Pickle.svg) -[![CocoaDocs](https://img.shields.io/cocoapods/metrics/doc-percent/Pickle.svg)](https://carousell.github.io/pickle) ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg) Carousell image picker. @@ -53,8 +52,6 @@ func imagePickerController(_ picker: ImagePickerController, didFinishPickingImag func imagePickerControllerDidCancel(_ picker: ImagePickerController) ``` -## Customization - ### Appearance Customize the appearance with a type that conforms to `ImagePickerConfigurable`. @@ -90,12 +87,30 @@ let picker = ImagePickerController( ) ``` +### Example Setup + +Install [CocoaPods](https://guides.cocoapods.org/using/getting-started.html#installation): + +``` +gem install cocoapods +``` + +Set up the development pods: + +```sh +make bootstrap +``` + +### Documentation + + + ## Requirements Pickle | iOS | Xcode | Swift ---------- | :--: | :---: | :---: -`~> 1.0.0` | 8.0+ | 8.3.3 | ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg) -`~> 1.2.0` | 9.0+ | 8.3.3 | ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg) +`>= 1.0.0` | 8.0+ | 8.3.3 | ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg) +`>= 1.2.0` | 9.0+ | 8.3.3 | ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg) ## Installation @@ -116,21 +131,7 @@ Create a `Cartfile` with the following specification and run `carthage bootstrap Follow the [instructions](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) to add the framework to your project. ``` -github "carousell/pickle" ~> 1.0.0 -``` - -## Example - -Install [CocoaPods](https://guides.cocoapods.org/using/getting-started.html#installation): - -``` -gem install cocoapods -``` - -Set up the development pods: - -```sh -pod install --project-directory=Example && open Example/Pickle.xcworkspace +github "carousell/pickle" ~> 1.2.0 ``` ## Contributing