Bump to v5.3.0
This commit is contained in:
parent
27e47b5de7
commit
f2474d0d00
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.2.0</string>
|
||||
<string>5.3.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.2.0</string>
|
||||
<string>5.3.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 = '5.2.1'
|
||||
s.version = '5.3.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,6 +1,6 @@
|
|||

|
||||
|
||||
[](http://cocoadocs.org/docsets/QRCodeReader.swift/) [](http://cocoadocs.org/docsets/QRCodeReader.swift/)
|
||||
[](http://cocoadocs.org/docsets/QRCodeReader.swift/) [](http://cocoadocs.org/docsets/QRCodeReader.swift/) [](http://cocoadocs.org/docsets/QRCodeReader.swift/)
|
||||
|
||||
The _QRCodeReader.swift_ was initially a simple QRCode reader but it now lets you the possibility to specify the [format type](https://developer.apple.com/library/ios/documentation/AVFoundation/Reference/AVMetadataMachineReadableCodeObject_Class/index.html#//apple_ref/doc/constant_group/Machine_Readable_Object_Types) you want to decode. It is based on the `AVFoundation` framework from Apple in order to replace ZXing or ZBar for iOS 8.0 and over.
|
||||
|
||||
|
@ -32,7 +32,7 @@ source 'https://github.com/CocoaPods/Specs.git'
|
|||
platform :ios, '8.0'
|
||||
|
||||
use_frameworks!
|
||||
pod 'QRCodeReader.swift', '~> 5.2.1'
|
||||
pod 'QRCodeReader.swift', '~> 5.3.0'
|
||||
```
|
||||
|
||||
Install into your project:
|
||||
|
@ -63,7 +63,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.2.0
|
||||
github "yannickl/QRCodeReader.swift" >= 5.3.0
|
||||
```
|
||||
|
||||
#### Manually
|
||||
|
|
Loading…
Reference in New Issue