Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fredpi committed Jun 27, 2019
1 parent 1fd13bd commit 8cc6524
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Expand Up @@ -11,6 +11,22 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

### Changed

- None

### Fixed

- None



## [0.4.0] - 2019-06-27

### Added

- None

### Changed

- Readd CocoaPods compatibility (By [Frederick Pietschmann](github.com/fredpi))
- Drop `UIImage(systemSymbol:compatibleWith:)` initializer (By [Frederick Pietschmann](github.com/fredpi))
- Drop `SFSymbol.toImage`, `SFSymbol.toImage(withConfiguration:)`,
Expand All @@ -25,6 +41,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

- Drop macOS support (that didn't work). (By [Thiago Holanda](https://github.com/unnamedd))



## [0.3.1] - 2019-06-22

### Added
Expand All @@ -40,6 +58,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
- None



## [0.3.0] - 2019-06-17

### Added
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -10,8 +10,8 @@
<img src="https://img.shields.io/badge/swift-5.1-FFAC45.svg" alt="Swift: 5.1">
</a>
<a href="https://github.com/piknotech/SFSafeSymbols/releases">
<img src="https://img.shields.io/badge/version-0.3.1-blue.svg"
alt="Version: 0.3.1">
<img src="https://img.shields.io/badge/version-0.4.0-blue.svg"
alt="Version: 0.4.0">
</a>
<a href="#">
<img src="https://img.shields.io/badge/Platforms-iOS%20|%20tvOS%20|%20watchOS-FF69B4.svg"
Expand Down Expand Up @@ -66,7 +66,7 @@ Supported platforms are `iOS (11.0+)`, `tvOS (11.0+)` and `watchOS (6.0+)`, alth
To integrate using Apple's Swift package manager, add the following as a dependency to your `Package.swift`:

```swift
.package(url: "https://github.com/piknotech/SFSafeSymbols.git", .upToNextMajor(from: "0.3"))
.package(url: "https://github.com/piknotech/SFSafeSymbols.git", .upToNextMajor(from: "0.4"))
```

After specifying `"SFSafeSymbols"` as a dependency of the target in which you want to use it, run `swift package update`.
Expand All @@ -80,7 +80,7 @@ Do the same configurations as for SwiftPM, then run `accio update` instead of `s
Add the following entry to your Cartfile:

```
github "piknotech/SFSafeSymbols" ~> 0.3
github "piknotech/SFSafeSymbols" ~> 0.4
```

Then run `carthage update`.
Expand All @@ -90,7 +90,7 @@ Then run `carthage update`.
Add the following entry to your Podfile:

```rb
pod 'SFSafeSymbols', '~> 0.3'
pod 'SFSafeSymbols', '~> 0.4'
```

Then run `pod install`.
Expand Down

0 comments on commit 8cc6524

Please sign in to comment.