Bump to v5.1.0
This commit is contained in:
parent
5e036b4b95
commit
91b8d11357
|
@ -16,3 +16,4 @@ Please keep the list sorted.
|
||||||
* [Daniel Tartaglia](https://github.com/dtartaglia)
|
* [Daniel Tartaglia](https://github.com/dtartaglia)
|
||||||
* [Mesashi Beheim](https://github.com/beheim)
|
* [Mesashi Beheim](https://github.com/beheim)
|
||||||
* [Søren Lind Kristiansen](https://github.com/sorenlind)
|
* [Søren Lind Kristiansen](https://github.com/sorenlind)
|
||||||
|
* [Yurii](https://github.com/kaphacius)
|
||||||
|
|
|
@ -629,6 +629,7 @@
|
||||||
CE8FFEEE1BAB4E8000D43F38 /* Release */,
|
CE8FFEEE1BAB4E8000D43F38 /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
};
|
};
|
||||||
/* End XCConfigurationList section */
|
/* End XCConfigurationList section */
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>5.0.0</string>
|
<string>5.1.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>FMWK</string>
|
<string>FMWK</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>5.0.0</string>
|
<string>5.1.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
|
|
|
@ -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 = '5.0.0'
|
s.version = '5.1.0'
|
||||||
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'
|
||||||
|
|
|
@ -30,7 +30,7 @@ source 'https://github.com/CocoaPods/Specs.git'
|
||||||
platform :ios, '8.0'
|
platform :ios, '8.0'
|
||||||
|
|
||||||
use_frameworks!
|
use_frameworks!
|
||||||
pod 'QRCodeReader.swift', '~> 5.0.0'
|
pod 'QRCodeReader.swift', '~> 5.1.0'
|
||||||
```
|
```
|
||||||
|
|
||||||
Install into your project:
|
Install into your project:
|
||||||
|
@ -61,7 +61,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" >= 5.0.0
|
github "yannickl/QRCodeReader.swift" >= 5.1.0
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Manually
|
#### Manually
|
||||||
|
|
Loading…
Reference in New Issue