Skip to content

Commit

Permalink
chore(release): 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherwin H committed Jun 17, 2020
1 parent 1866ed2 commit 427ca0e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.2](https://github.com/imgix/imgix-swift/compare/1.1.1...1.1.2) (2020-06-17)

* fix: percent-encode any invalid characters in URL path ([adb8694](https://github.com/imgix/imgix-swift/commit/adb8694a004bde19561cfd15acc2d8880fb4c838))

## [1.1.1](https://github.com/imgix/imgix-swift/compare/1.1.0...1.1.1) (2020-03-12)

* fix: remove residual objc interface header ([#24](https://github.com/imgix/imgix-swift/pull/24))
Expand Down
2 changes: 1 addition & 1 deletion ImgixSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ImgixSwift"
s.version = "1.1.1"
s.version = "1.1.2"
s.summary = "The official imgix Swift client. Written in Swift, but plays nice with Objective-C codebases, too! 👌"

s.license = { :type => 'BSD 2-Clause', :file => 'LICENSE.md' }
Expand Down
2 changes: 1 addition & 1 deletion Sources/ImgixSwift/ImgixClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import Foundation

@objc open class ImgixClient: NSObject {
@objc static public let VERSION = "1.1.1"
@objc static public let VERSION = "1.1.2"

@objc public let host: String
@objc open var useHttps: Bool = true
Expand Down
2 changes: 1 addition & 1 deletion Sources/ImgixSwift/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<string>1.1.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 427ca0e

Please sign in to comment.