Skip to content

Commit

Permalink
Remove explicit declaration of supported platforms (#96)
Browse files Browse the repository at this point in the history
* Remove platform declaration

* 5.1.8
  • Loading branch information
ApolloZhu committed Sep 18, 2020
1 parent 2e65527 commit 62eff30
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 19 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.1.8](https://github.com/EFPrefix/EFQRCode/releases/tag/5.1.8) (2020-09-18)

#### Fix

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

---

## [5.1.7](https://github.com/EFPrefix/EFQRCode/releases/tag/5.1.7) (2020-09-14)

#### 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.7'
s.version = '5.1.8'
s.summary = 'A better way to operate quick response code in Swift.'

s.description = <<-DESC
Expand Down
13 changes: 2 additions & 11 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
{
"object": {
"pins": [
{
"package": "EFFoundation",
"repositoryURL": "https://github.com/EFPrefix/EFFoundation.git",
"state": {
"branch": null,
"revision": "52d5533ad73ce365fae5e8e627284b0383a56179",
"version": "1.1.1"
}
},
{
"package": "swift_qrcodejs",
"repositoryURL": "https://github.com/ApolloZhu/swift_qrcodejs.git",
"state": {
"branch": null,
"revision": "2f8286e9e6e0f10d42bf4ac3e7b60111593499ff",
"version": "1.1.2"
"revision": "f3fe9fdd39fa48e45b501000194b43a3883f732f",
"version": "1.1.4"
}
}
]
Expand Down
1 change: 0 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import PackageDescription

let package = Package(
name: "EFQRCode",
platforms: [.iOS(.v8), .macOS(.v10_11), .tvOS(.v9), .watchOS(.v2)],
products: [
.library(name: "EFQRCode", targets: ["EFQRCode"])
],
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.7'
pod 'EFQRCode', '~> 5.1.8'
```

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.7
github "EFPrefix/EFQRCode" ~> 5.1.8
```

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", Version(5, 1, 7))
.Package(url: "https://github.com/EFPrefix/EFQRCode.git", Version(5, 1, 8))
]
```

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 git@github.com:EFPrefix/EFQRCode.git; cd EFQRCode; sh Startup.sh; open
EFQRCode 可以通过 [CocoaPods](http://cocoapods.org) 进行获取。只需要在你的 Podfile 中添加如下代码就能实现引入:

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

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

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

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

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

Expand Down

0 comments on commit 62eff30

Please sign in to comment.