Skip to content

Commit

Permalink
5.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ApolloZhu committed Nov 4, 2020
1 parent 011d2ec commit edac54a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [5.1.9](https://github.com/EFPrefix/EFQRCode/releases/tag/5.1.9) (2020-11-04)

#### Add

- Add Playgrounds with usage example [#98](https://github.com/EFPrefix/EFQRCode/pull/98).

#### Fix

- Fix SwiftPM syntax in README [#99](https://github.com/EFPrefix/EFQRCode/pull/99);
- Fix GIF frame delay time setting [#104](https://github.com/EFPrefix/EFQRCode/issues/104);
- Now generates QRCode with correct, specified content encoding on watchOS;
- Pin `swift_qrcodejs` to 1.2.0, up to next minor [#102](https://github.com/EFPrefix/EFQRCode/pull/102).

---

## [5.1.8](https://github.com/EFPrefix/EFQRCode/releases/tag/5.1.8) (2020-09-18)
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.1.8'
s.version = '5.1.9'
s.summary = 'A better way to operate quick response code in Swift.'

s.description = <<-DESC
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.8'
pod 'EFQRCode', '~> 5.1.9'
```

Try `pod 'EFQRCode/watchOS'` instead if you need to use it in watchOS.
Expand All @@ -128,7 +128,7 @@ $ brew install carthage
To integrate EFQRCode into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "EFPrefix/EFQRCode" ~> 5.1.8
github "EFPrefix/EFQRCode" ~> 5.1.9
```

Run `carthage update` to build the framework and drag the built `EFQRCode.framework` into your Xcode project.
Expand All @@ -141,7 +141,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", .upToNextMinor(from: "5.1.8"))
.package(url: "https://github.com/EFPrefix/EFQRCode.git", .upToNextMinor(from: "5.1.9"))
]
```

Expand Down
6 changes: 3 additions & 3 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ git clone [email protected]:EFPrefix/EFQRCode.git; cd EFQRCode; sh Startup.sh; open
EFQRCode 可以通过 [CocoaPods](http://cocoapods.org) 进行获取。只需要在你的 Podfile 中添加如下代码就能实现引入:

```ruby
pod 'EFQRCode', '~> 5.1.8'
pod 'EFQRCode', '~> 5.1.9'
```

如果你需要在 watchOS 中使用的话,请使用 `pod 'EFQRCode/watchOS'`
Expand All @@ -132,7 +132,7 @@ $ brew install carthage
通过在你的 `Cartfile` 添加如下语句可以将 EFQRCode 引入你的项目:

```ogdl
github "EFPrefix/EFQRCode" ~> 5.1.8
github "EFPrefix/EFQRCode" ~> 5.1.9
```

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

```swift
dependencies: [
.package(url: "https://github.com/EFPrefix/EFQRCode.git", .upToNextMinor(from: "5.1.8"))
.package(url: "https://github.com/EFPrefix/EFQRCode.git", .upToNextMinor(from: "5.1.9"))
]
```

Expand Down

0 comments on commit edac54a

Please sign in to comment.