Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bcylin committed Oct 9, 2017
1 parent af46ed0 commit df9d823
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Example/Pickle/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Pickle (1.1.0)
- Pickle (1.2.0)
- SwiftLint (0.18.1)

DEPENDENCIES:
Expand All @@ -11,7 +11,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
Pickle: 5cc73fe4845a18e9ae521f72e53950cff1c10316
Pickle: 80f99c9377a2785e48bd5c3ad061e7f614120312
SwiftLint: b467d08f5b25dc3b3cfed243d8e1b74b91714c67

PODFILE CHECKSUM: 83c0411086be0ec4861900c45c98a441a46c6431
Expand Down
2 changes: 1 addition & 1 deletion Example/Pods/Target Support Files/Pickle/Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Example/UITests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Pickle.podspec
Original file line number Diff line number Diff line change
@@ -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' }
Expand Down
41 changes: 21 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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`.
Expand Down Expand Up @@ -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

<https://carousell.github.io/pickle>

## 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

Expand All @@ -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
Expand Down

0 comments on commit df9d823

Please sign in to comment.