Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EyreFree committed Nov 28, 2022
1 parent 7342220 commit 9b7bdfb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

-----

## [1.2.1](https://github.com/EFPrefix/EFIconFont/releases/tag/1.2.1) (2022-11-29)

- Update deployment_target to meet xcode requirements.

---

## [1.2.0](https://github.com/EFPrefix/EFIconFont/releases/tag/1.2.0) (2021-07-09)

- Add [AliCloudConsole](https://www.iconfont.cn/collections/detail?cid=11607);
Expand Down
10 changes: 5 additions & 5 deletions EFIconFont.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'EFIconFont'
s.version = '1.2.0'
s.version = '1.2.1'
s.summary = 'Yet another stupid wrapper of icon font.'

s.description = <<-DESC
Expand All @@ -14,10 +14,10 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/EFPrefix/EFIconFont.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/EyreFree777'

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '6.0'

s.swift_version = '5.0'
s.requires_arc = true
Expand Down
7 changes: 1 addition & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@ import PackageDescription

let package = Package(
name: "EFIconFont",
platforms: [
.iOS(.v8),
.macOS(.v10_11),
.tvOS(.v9),
.watchOS(.v2)
],
platforms: [.iOS(.v11), .macOS(.v10_13), .tvOS(.v11), .watchOS(.v6)],
products: [
.library(name: "EFIconFontCore", targets: ["EFIconFontCore"]),
.library(name: "EFIconFontAliCloudConsole", targets: ["EFIconFontCore", "EFIconFontAliCloudConsole"]),
Expand Down

0 comments on commit 9b7bdfb

Please sign in to comment.