Bump to v5.4.0

This commit is contained in:
Yannick Loriot 2016-03-14 21:47:58 +01:00
parent ef37c50abc
commit 6dfd3fe061
5 changed files with 6 additions and 10 deletions

View File

@ -1,13 +1,9 @@
# Change log
## [Version 5.5.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/5.5.0)
## [Version 5.4.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/5.4.0)
Released on 2016-03-14.
- [REFACTORING] make the `codeReader` property public
## [Version 5.4.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/5.4.0)
Released on 2016-01-24.
- [REFACTORING] Rename `completionBlock` of `QRCodeReader` to `codeDidFoundBlock`.
- [ADD] `stopScanningWhenCodeIsFound` flag to stop the scanner when a code is found.

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.3.0</string>
<string>5.4.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.3.0</string>
<string>5.4.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'QRCodeReader.swift'
s.module_name = 'QRCodeReader'
s.version = '5.3.1'
s.version = '5.4.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

@ -67,7 +67,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'QRCodeReader.swift', '~> 5.3.1'
pod 'QRCodeReader.swift', '~> 5.4.0'
```
Install into your project:
@ -98,7 +98,7 @@ $ brew install carthage
To integrate `QRCodeReader` into your Xcode project using Carthage, specify it in your `Cartfile` file:
```ogdl
github "yannickl/QRCodeReader.swift" >= 5.3.1
github "yannickl/QRCodeReader.swift" >= 5.4.0
```
#### Manually