Bump to v10.0.0
This commit is contained in:
parent
20cb403460
commit
29f8b8823c
|
@ -1,6 +1,7 @@
|
|||
# Change log
|
||||
|
||||
## Version 10.0.0
|
||||
## [Version 10.0.0](https://github.com/yannickl/QRCodeReader.swift/releases/tag/10.0.0)
|
||||
Release on 2019-01-24
|
||||
|
||||
- [ADD] Allowing the scan area configuration (#157 #106)
|
||||
- [UPDATE] The `showOverlayView` builder property is now `false` by default
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>9.0.1</string>
|
||||
<string>10.0.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>9.0.1</string>
|
||||
<string>10.0.0</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 = '9.0.1'
|
||||
s.version = '10.0.0'
|
||||
s.license = 'MIT'
|
||||
s.summary = 'Simple QRCode and 1D bar code reader in Swift'
|
||||
s.homepage = 'https://github.com/yannickl/QRCodeReader.swift.git'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<p align="center">
|
||||
<p align="center">
|
||||
<img src="https://cloud.githubusercontent.com/assets/798235/19688388/c61a6ab8-9ac9-11e6-9757-e087c268f3a6.png" alt="QRCodeReader.swift">
|
||||
</p>
|
||||
|
||||
|
@ -144,7 +144,7 @@ platform :ios, '8.0'
|
|||
use_frameworks!
|
||||
|
||||
target 'TargetName' do
|
||||
pod 'QRCodeReader.swift', '~> 9.0.1'
|
||||
pod 'QRCodeReader.swift', '~> 10.0.0'
|
||||
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" >= 9.0.1
|
||||
github "yannickl/QRCodeReader.swift" >= 10.0.0
|
||||
```
|
||||
|
||||
#### 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: "9.0.1" ..< Version.max)
|
||||
.Package(url: "https://github.com/yannickl/QRCodeReader.swift.git", versions: "10.0.0" ..< Version.max)
|
||||
]
|
||||
)
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue