Skip to content

Commit

Permalink
6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ApolloZhu committed Nov 4, 2020
1 parent 8e1fc66 commit 531dd44
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

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

#### Add

- Add support to compile for macOS 10.10 using CocoaPods.

#### Changed

- `swift_qrcodejs` is now conditional dependency with Swift Package Manager 5.3+.

#### Remove

- Drop iOS 8 support from CocoaPods with Xcode 12 [#101](https://github.com/EFPrefix/EFQRCode/pull/101);
- Remove `Core` and `watchOS` sub-specs [#100](https://github.com/EFPrefix/EFQRCode/issues/100).

---

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

#### 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.1.9'
s.version = '6.0.0'
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 @@ -104,7 +104,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.9'
pod 'EFQRCode', '~> 6.0.0'
```

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

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

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

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

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

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

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

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

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

Expand Down

0 comments on commit 531dd44

Please sign in to comment.