Skip to content

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherwin H committed Feb 12, 2020
1 parent 0150dc7 commit ae489f1
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 5 deletions.
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

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.0](https://github.com/imgix/imgix-swift/compare/1.0.0...1.1.0) (2020-02-12)

* build(spm): add swift package manifest ([#21](https://github.com/imgix/imgix-swift/pull/21))
* refactor: use Swift CommonCrypto module to calculate md5 hashes ([#22](https://github.com/imgix/imgix-swift/pull/22))

# [1.0.0](https://github.com/imgix/imgix-swift/compare/0.4.3...1.0.0) (2020-01-31)

* build: update to support Swift 5 ([#17](https://github.com/imgix/imgix-swift/pull/17))
4 changes: 3 additions & 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.0.0"
s.version = "1.1.0"
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 All @@ -15,6 +15,8 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.source_files = ["Sources/ImgixSwift/*.swift"]

s.swift_versions = ['3.0', '4.0', '5.0']

s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.2"
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![CocoaPods](https://img.shields.io/cocoapods/v/ImgixSwift.svg)](https://cocoapods.org/pods/ImgixSwift)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Build Status](https://travis-ci.org/imgix/imgix-swift.svg?branch=master)](https://travis-ci.org/imgix/imgix-swift)
![Supported Platforms](https://img.shields.io/cocoapods/p/ImgixSwift.svg)
[![License](https://img.shields.io/github/license/imgix/imgix-swift)](https://github.com/imgix/imgix-swift/blob/master/LICENSE.md)

---
Expand All @@ -25,8 +26,21 @@

- **[Carthage](https://github.com/carthage/carthage):** `github "imgix/imgix-swift"`
- **[CocoaPods](https://github.com/cocoapods/cocoapods):** `pod "ImgixSwift"`
- **[Swift Package Manager](https://github.com/apple/swift-package-manager)**:

The imgix Swift client is compatible with Swift 5.0.
```swift
// add the following to your Package.swift manifest, within the dependencies array

.package(url: "https://github.com/imgix/imgix-swift.git", from: "1.0.0")

// add the package name "ImgixSwift" to the list of named dependencies in your project target

.target(
name: "YourSwiftProject",
dependencies: ["ImgixSwift"]),
```

As of version [`1.0.0`](https://github.com/imgix/imgix-swift/releases/tag/1.0.0) imgix Swift client is compatible with Swift 5.0.

The latest version compatible with Swift 4.0 is [`0.4.3`](https://github.com/imgix/imgix-swift/releases/tag/0.4.3).

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.0.0"
@objc static public let VERSION = "1.1.0"

@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.0.0</string>
<string>1.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit ae489f1

Please sign in to comment.