Skip to content

Commit

Permalink
5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EyreFree committed Sep 11, 2019
1 parent e14f394 commit 24481ea
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 21 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

---

## [5.0.1](https://github.com/EFPrefix/EFQRCode/releases/tag/5.0.1) (2018-09-11)

#### Fix

Fix issue [#65](https://github.com/EFPrefix/EFQRCode/issues/65).

---

## [5.0.0](https://github.com/EFPrefix/EFQRCode/releases/tag/5.0.0) (2019-03-31)

#### Add
Expand Down
2 changes: 1 addition & 1 deletion EFQRCode.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'EFQRCode'
s.version = '5.0.0'
s.version = '5.0.1'
s.summary = 'A better way to operate quick response code in Swift.'

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions Examples/iOS/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>5.0.0.0</string>
<string>5.0.1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppleMusicUsageDescription</key>
Expand Down
4 changes: 2 additions & 2 deletions Examples/iOS/watchOS Example Extension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleVersion</key>
<string>5.0.0.0</string>
<string>5.0.1.0</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
4 changes: 2 additions & 2 deletions Examples/iOS/watchOS Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleVersion</key>
<string>5.0.0.0</string>
<string>5.0.1.0</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
Expand Down
4 changes: 2 additions & 2 deletions Examples/macOS/macOS Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleVersion</key>
<string>450.1</string>
<string>501.0</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.developer-tools</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Examples/tvOS/tvOS Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleVersion</key>
<string>5.0.0.0</string>
<string>5.0.1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ You can also click the `Mac App Store` button below to download demo for macOS:

### Manual

To run the example project manually, clone the repo, demos are in the 'Examples' folder, remember run command `git submodule update --init --recursive` in terminal to get all `submodules` first, then open `EFQRCode.xcworkspace` with Xcode and select the target you want, run.
To run the example project manually, clone the repo, demos are in the 'Examples' folder, remember run command `sh Startup.sh` in terminal to get all dependencies first, then open `EFQRCode.xcworkspace` with Xcode and select the target you want, run.

Or you can run the following command in terminal:

Expand All @@ -103,7 +103,7 @@ EFQRCode is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:

```ruby
pod 'EFQRCode', '~> 5.0.0'
pod 'EFQRCode', '~> 5.0.1'
```

Then, run the following command:
Expand All @@ -126,7 +126,7 @@ $ brew install carthage
To integrate EFQRCode into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "EFPrefix/EFQRCode" ~> 5.0.0
github "EFPrefix/EFQRCode" ~> 5.0.1
```

Run `carthage update` to build the framework and drag the built `EFQRCode.framework` into your Xcode project.
Expand All @@ -139,7 +139,7 @@ Once you have your Swift package set up, adding EFQRCode as a dependency is as e

```swift
dependencies: [
.Package(url: "https://github.com/EFPrefix/EFQRCode.git", Version(5, 0, 0))
.Package(url: "https://github.com/EFPrefix/EFQRCode.git", Version(5, 0, 1))
]
```

Expand Down
8 changes: 4 additions & 4 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ EFQRCode 是一个轻量级的、用来生成和识别二维码的纯 Swift 库
### 手动

1. 利用 `git clone` 命令下载本仓库;
2. 切换到仓库根目录下,执行 `git submodule update --init --recursive` 命令获取所有 submodule
2. 切换到仓库根目录下,执行 `sh Startup.sh` 命令获取所有依赖
3. `EFQRCode.xcworkspace` 工程中包含了所有的示例程序,用 Xcode 打开它,选择对应平台 target 编译即可。

或执行以下命令:
Expand All @@ -107,7 +107,7 @@ git clone git@github.com:EFPrefix/EFQRCode.git; cd EFQRCode; git submodule updat
EFQRCode 可以通过 [CocoaPods](http://cocoapods.org) 进行获取。只需要在你的 Podfile 中添加如下代码就能实现引入:

```ruby
pod 'EFQRCode', '~> 5.0.0'
pod 'EFQRCode', '~> 5.0.1'
```

然后,执行如下命令即可:
Expand All @@ -130,7 +130,7 @@ $ brew install carthage
通过在你的 `Cartfile` 添加如下语句可以将 EFQRCode 引入你的项目:

```ogdl
github "EFPrefix/EFQRCode" ~> 5.0.0
github "EFPrefix/EFQRCode" ~> 5.0.1
```

接下来执行 `carthage update` 命令生成 Framework 并且将生成的 `EFQRCode.framework` 拖入工程即可。
Expand All @@ -143,7 +143,7 @@ github "EFPrefix/EFQRCode" ~> 5.0.0

```swift
dependencies: [
.Package(url: "https://github.com/EFPrefix/EFQRCode.git", Version(5, 0, 0))
.Package(url: "https://github.com/EFPrefix/EFQRCode.git", Version(5, 0, 1))
]
```

Expand Down
2 changes: 1 addition & 1 deletion Source/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.0.0</string>
<string>5.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 24481ea

Please sign in to comment.