Bump to v6.1.0
This commit is contained in:
parent
f323b0ff65
commit
2f1369e82c
|
@ -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.
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue