Bump version

This commit is contained in:
Yannick Loriot 2018-02-17 21:49:17 +01:00
parent eaf911bc97
commit b11893ed75
6 changed files with 14 additions and 9 deletions

View File

@ -1,16 +1,20 @@
# Change log # Change log
## [Version 8.1.1](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.1.1)
Release on 2018-17-02
- Fixing the camera display by removing the `weak` reference in the QRCodeReaderView (#120)
## [Version 8.1.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.1.0) ## [Version 8.1.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.1.0)
Release on 2018-25-01 Release on 2018-25-01
- Fixing the scan duplication by introducing a backgroun serial queue (#127) - Fixing the scan duplication by introducing a backgroun serial queue (#127)
- Fixing some camera orientation glitches when init a `QRCodeReaderView` - Fixing some camera orientation glitches when init a `QRCodeReaderView`
## [Version 8.0.4](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.0.4) ## [Version 8.0.4](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.0.4)
Release on 2017-11-26 Release on 2017-11-26
- Fixing the stopScanning method to avoid scan duplication (#127) - Fixing the stopScanning method to avoid scan duplication (#127)
- Fixing the camera display by removing the `weak` reference in the QRCodeReaderView (#120)
## [Version 8.0.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.0.0) ## [Version 8.0.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.0.0)
Release on 2017-09-21 Release on 2017-09-21

View File

@ -23,6 +23,7 @@ Please keep the list sorted.
* [Mesashi Beheim](https://github.com/masa-beheim) * [Mesashi Beheim](https://github.com/masa-beheim)
* [Pablo Lerma](https://github.com/PabloLerma) * [Pablo Lerma](https://github.com/PabloLerma)
* [Petko Todorov](https://github.com/petkotodorov) * [Petko Todorov](https://github.com/petkotodorov)
* [Ravil Khusainov](https://github.com/kabanishe23)
* [Samuel Duursma](https://github.com/sdduursma) * [Samuel Duursma](https://github.com/sdduursma)
* [Sebastien Zwickert](https://github.com/dilaroga) * [Sebastien Zwickert](https://github.com/dilaroga)
* [Søren Lind Kristiansen](https://github.com/sorenlind) * [Søren Lind Kristiansen](https://github.com/sorenlind)

View File

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

View File

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

View File

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

View File

@ -144,7 +144,7 @@ platform :ios, '8.0'
use_frameworks! use_frameworks!
target 'TargetName' do target 'TargetName' do
pod 'QRCodeReader.swift', '~> 8.1.0' pod 'QRCodeReader.swift', '~> 8.1.1'
end end
``` ```
@ -176,7 +176,7 @@ $ brew install carthage
To integrate `QRCodeReader` into your Xcode project using Carthage, specify it in your `Cartfile` file: To integrate `QRCodeReader` into your Xcode project using Carthage, specify it in your `Cartfile` file:
```ogdl ```ogdl
github "yannickl/QRCodeReader.swift" >= 8.1.0 github "yannickl/QRCodeReader.swift" >= 8.1.1
``` ```
#### Swift Package Manager #### Swift Package Manager
@ -190,7 +190,7 @@ let package = Package(
name: "YOUR_PROJECT_NAME", name: "YOUR_PROJECT_NAME",
targets: [], targets: [],
dependencies: [ dependencies: [
.Package(url: "https://github.com/yannickl/QRCodeReader.swift.git", versions: "8.1.0" ..< Version.max) .Package(url: "https://github.com/yannickl/QRCodeReader.swift.git", versions: "8.1.1" ..< Version.max)
] ]
) )
``` ```