Bump to v6.1.0

This commit is contained in:
Yannick Loriot 2016-08-03 23:40:41 +02:00
parent f323b0ff65
commit 2f1369e82c
4 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,10 @@
# Change log
## [Version 6.1.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/6.1.0)
Released on 2016-08-03.
- Hide/Display cancel button
## [Version 6.0.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/6.0.0)
Released on 2016-03-22.

View File

@ -16,5 +16,6 @@ Please keep the list sorted.
* [Daniel Tartaglia](https://github.com/dtartaglia)
* [Jan Karlo Dela Cruz](https://github.com/jankdc)
* [Mesashi Beheim](https://github.com/beheim)
* [Pablo Lerma](https://github.com/PabloLerma)
* [Søren Lind Kristiansen](https://github.com/sorenlind)
* [Yurii](https://github.com/kaphacius)

View File

@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'QRCodeReader.swift'
s.module_name = 'QRCodeReader'
s.version = '6.0.0'
s.version = '6.1.0'
s.license = 'MIT'
s.summary = 'Simple QRCode and 1D bar code reader in Swift'
s.homepage = 'https://github.com/yannickl/QRCodeReader.swift.git'

View File

@ -39,7 +39,7 @@ lazy var readerVC = QRCodeReaderViewController(metadataObjectTypes: [AVMetadataO
func reader(reader: QRCodeReaderViewController, didScanResult result: QRCodeReaderResult) {
self.dismissViewControllerAnimated(true, completion: nil)
}
func readerDidCancel(reader: QRCodeReaderViewController) {
self.dismissViewControllerAnimated(true, completion: nil)
}
@ -70,7 +70,7 @@ platform :ios, '8.0'
use_frameworks!
target 'TargetName' do
pod 'QRCodeReader.swift', '~> 6.0.0'
pod 'QRCodeReader.swift', '~> 6.1.0'
end
```
@ -102,7 +102,7 @@ $ brew install carthage
To integrate `QRCodeReader` into your Xcode project using Carthage, specify it in your `Cartfile` file:
```ogdl
github "yannickl/QRCodeReader.swift" >= 6.0.0
github "yannickl/QRCodeReader.swift" >= 6.1.0
```
#### Manually