Skip to content

Commit

Permalink
Version Bump to 1.5.0
Browse files Browse the repository at this point in the history
* Update the CHANGELOG
* Update the README
  • Loading branch information
Vkt0r committed Sep 26, 2020
1 parent 6ed3e57 commit 9483a5d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
23 changes: 18 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ All notable changes to this project will be documented in this file. Changes not
# [Unreleased]

# [1.5.0]

## Added
- Add two new cases to the responses (`notAcceptable`, `tooManyRequests`). ([#437](https://github.com/httpswift/swifter/pull/437)) by [@KKuzmichev](https://github.com/KKuzmichev)

## Fixed
- Fix an issue causing a crash when the `Content-Lenght` was negative. ([#457](https://github.com/httpswift/swifter/pull/457)) by [@Vkt0r](https://github.com/Vkt0r)

## Changed

- Fix `SUPPORTED_PLATFORMS` for tvOS. This helps Carthage to build only the specified platform when the option `--platform` is used. ([#464](https://github.com/httpswift/swifter/pull/464)) by [@jasminlapalme](https://github.com/jasminlapalme)


# [1.5.0-rc.1]

## Removed

- Support for the iOS 8 deployment target. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
Expand All @@ -39,10 +54,6 @@ All notable changes to this project will be documented in this file. Changes not
- Fix compiler warnings in Socket+File.swift for iOS, tvOS, and Linux platforms by using `withUnsafeBytes` rather than `&` to get a scoped UnsafeRawPointer ([#445](https://github.com/httpswift/swifter/pull/445)) by [@kbongort](https://github.com/kbongort).
- Fix tests on linux by importing FoundationNetworking for NSURLSession APIs. ([#446](https://github.com/httpswift/swifter/pull/446)) by [@kbongort](https://github.com/kbongort)
- Replace CircleCI for continuous integration in favor of Github Actions. ([#446](https://github.com/httpswift/swifter/pull/446)) by [@Vkt0r](https://github.com/Vkt0r)
- Fix `SUPPORTED_PLATFORMS` for tvOS. This helps Carthage to build only the specified platform when the option `--platform` is used. ([#464](https://github.com/httpswift/swifter/pull/464)) by [@jasminlapalme](https://github.com/jasminlapalme)

## Fixed
- Fix an issue causing a crash when the `Content-Lenght` was negative. ([#457](https://github.com/httpswift/swifter/pull/457)) by [@Vkt0r](https://github.com/Vkt0r)

# [1.4.7]

Expand Down Expand Up @@ -89,6 +100,8 @@ All notable changes to this project will be documented in this file. Changes not
- An issue in the `HttpRouter` causing issues to handle routes with overlapping. ([#359](https://github.com/httpswift/swifter/pull/359)) by [@Vkt0r](https://github.com/Vkt0r)


[Unreleased]: https://github.com/httpswift/swifter/compare/1.4.6...HEAD
[Unreleased]: https://github.com/httpswift/swifter/compare/1.5.0...HEAD
[1.4.6]: https://github.com/httpswift/swifter/compare/1.4.5...1.4.6
[1.4.7]: https://github.com/httpswift/swifter/compare/1.4.6...1.4.7
[1.5.0-rc.1]: https://github.com/httpswift/swifter/compare/1.4.7...1.5.0-rc.1
[1.5.0]: https://github.com/httpswift/swifter/compare/1.5.0-rc.1...1.5.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ server.start()
```ruby
use_frameworks!

pod 'Swifter', '~> 1.4.7'
pod 'Swifter', '~> 1.5.0'
```

### Carthage? Also yes.
```
github "httpswift/swifter" ~> 1.4.7
github "httpswift/swifter" ~> 1.5.0
```

### Swift Package Manager.
Expand All @@ -87,7 +87,7 @@ import PackageDescription
let package = Package(
name: "MyServer",
dependencies: [
.package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.7"))
.package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.5.0"))
]
)
```
Expand Down
4 changes: 2 additions & 2 deletions Swifter.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |s|

s.name = "Swifter"
s.version = "1.5.0-rc.1"
s.version = "1.5.0"
s.summary = "Tiny http server engine written in Swift programming language."
s.homepage = "https://github.com/glock45/swifter"
s.license = { :type => 'Copyright', :file => 'LICENSE' }
s.author = { "Damian Kołakowski" => "[email protected]" }
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.5.0-rc.1" }
s.source = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.5.0" }
s.source_files = 'XCode/Sources/*.{swift}'
s.swift_version = '4.2'

Expand Down

0 comments on commit 9483a5d

Please sign in to comment.