Bump version
This commit is contained in:
parent
eaf911bc97
commit
b11893ed75
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,16 +1,20 @@
|
|||
# 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)
|
||||
Release on 2018-25-01
|
||||
|
||||
- Fixing the scan duplication by introducing a backgroun serial queue (#127)
|
||||
- Fixing some camera orientation glitches when init a `QRCodeReaderView`
|
||||
- Fixing the scan duplication by introducing a backgroun serial queue (#127)
|
||||
- Fixing some camera orientation glitches when init a `QRCodeReaderView`
|
||||
|
||||
## [Version 8.0.4](https://github.com/yannickl/QRCodeReader.swift/releases/tag/8.0.4)
|
||||
Release on 2017-11-26
|
||||
|
||||
- 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)
|
||||
Release on 2017-09-21
|
||||
|
|
|
@ -23,6 +23,7 @@ Please keep the list sorted.
|
|||
* [Mesashi Beheim](https://github.com/masa-beheim)
|
||||
* [Pablo Lerma](https://github.com/PabloLerma)
|
||||
* [Petko Todorov](https://github.com/petkotodorov)
|
||||
* [Ravil Khusainov](https://github.com/kabanishe23)
|
||||
* [Samuel Duursma](https://github.com/sdduursma)
|
||||
* [Sebastien Zwickert](https://github.com/dilaroga)
|
||||
* [Søren Lind Kristiansen](https://github.com/sorenlind)
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>8.1.0</string>
|
||||
<string>8.1.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>8.1.0</string>
|
||||
<string>8.1.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'QRCodeReader.swift'
|
||||
s.module_name = 'QRCodeReader'
|
||||
s.version = '8.1.0'
|
||||
s.version = '8.1.1'
|
||||
s.license = 'MIT'
|
||||
s.summary = 'Simple QRCode and 1D bar code reader in Swift'
|
||||
s.homepage = 'https://github.com/yannickl/QRCodeReader.swift.git'
|
||||
|
|
|
@ -144,7 +144,7 @@ platform :ios, '8.0'
|
|||
use_frameworks!
|
||||
|
||||
target 'TargetName' do
|
||||
pod 'QRCodeReader.swift', '~> 8.1.0'
|
||||
pod 'QRCodeReader.swift', '~> 8.1.1'
|
||||
end
|
||||
```
|
||||
|
||||
|
@ -176,7 +176,7 @@ $ brew install carthage
|
|||
To integrate `QRCodeReader` into your Xcode project using Carthage, specify it in your `Cartfile` file:
|
||||
|
||||
```ogdl
|
||||
github "yannickl/QRCodeReader.swift" >= 8.1.0
|
||||
github "yannickl/QRCodeReader.swift" >= 8.1.1
|
||||
```
|
||||
|
||||
#### Swift Package Manager
|
||||
|
@ -190,7 +190,7 @@ let package = Package(
|
|||
name: "YOUR_PROJECT_NAME",
|
||||
targets: [],
|
||||
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)
|
||||
]
|
||||
)
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue