Skip to content

Commit

Permalink
Bump version number & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenSorial committed May 1, 2022
1 parent ef000d9 commit c8c33d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

### Fixed

- None

## [3.3.2] - 2022-04-14

### Fixed

- Added missing 3.3 layerset information.

## [3.3.1] - 2022-04-14
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<img src="https://img.shields.io/badge/swift-5-FFAC45.svg" alt="Swift: 5">
</a>
<a href="https://github.com/SFSafeSymbols/SFSafeSymbols/releases">
<img src="https://img.shields.io/badge/version-3.3.1-blue.svg"
alt="Version: 3.3.1">
<img src="https://img.shields.io/badge/version-3.3.2-blue.svg"
alt="Version: 3.3.2">
</a>
<a href="#">
<img src="https://img.shields.io/badge/Platforms-iOS%20|%20tvOS%20|%20watchOS%20|%20macOS-FF69B4.svg"
Expand Down Expand Up @@ -91,7 +91,7 @@ To integrate SFSafeSymbols using the Xcode-built-in SPM, choose `File` → `Swif
To integrate using the standalone version of Apple's Swift Package Manager, add the following as a dependency to your `Package.swift`:

```swift
.package(url: "https://github.com/SFSafeSymbols/SFSafeSymbols.git", .upToNextMajor(from: "3.3.1"))
.package(url: "https://github.com/SFSafeSymbols/SFSafeSymbols.git", .upToNextMajor(from: "3.3.2"))
```

After specifying `"SFSafeSymbols"` as a dependency of the target in which you want to use it, run `swift package update`.
Expand All @@ -101,7 +101,7 @@ After specifying `"SFSafeSymbols"` as a dependency of the target in which you wa
Add the following entry to your Cartfile:

```
github "SFSafeSymbols/SFSafeSymbols" ~> 3.3.1
github "SFSafeSymbols/SFSafeSymbols" ~> 3.3.2
```

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

```rb
pod 'SFSafeSymbols', '~> 3.3.1'
pod 'SFSafeSymbols', '~> 3.3.2'
```

Then run `pod install`.
Expand Down
2 changes: 1 addition & 1 deletion SFSafeSymbols.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'SFSafeSymbols'
spec.version = '3.3.1'
spec.version = '3.3.2'
spec.summary = "Safely access Apple's SF Symbols using static typing"

spec.homepage = 'https://github.com/SFSafeSymbols/SFSafeSymbols'
Expand Down

0 comments on commit c8c33d9

Please sign in to comment.