Skip to content

Commit 9483a5d

Browse files
committed
Version Bump to 1.5.0
* Update the CHANGELOG * Update the README
1 parent 6ed3e57 commit 9483a5d

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

CHANGELOG.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@ All notable changes to this project will be documented in this file. Changes not
1818
1919
# [Unreleased]
2020

21+
# [1.5.0]
22+
23+
## Added
24+
- Add two new cases to the responses (`notAcceptable`, `tooManyRequests`). ([#437](https://github.com/httpswift/swifter/pull/437)) by [@KKuzmichev](https://github.com/KKuzmichev)
25+
26+
## Fixed
27+
- 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)
28+
29+
## Changed
30+
31+
- 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)
32+
33+
34+
# [1.5.0-rc.1]
35+
2136
## Removed
2237

2338
- Support for the iOS 8 deployment target. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
@@ -39,10 +54,6 @@ All notable changes to this project will be documented in this file. Changes not
3954
- 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).
4055
- Fix tests on linux by importing FoundationNetworking for NSURLSession APIs. ([#446](https://github.com/httpswift/swifter/pull/446)) by [@kbongort](https://github.com/kbongort)
4156
- Replace CircleCI for continuous integration in favor of Github Actions. ([#446](https://github.com/httpswift/swifter/pull/446)) by [@Vkt0r](https://github.com/Vkt0r)
42-
- 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)
43-
44-
## Fixed
45-
- 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)
4657

4758
# [1.4.7]
4859

@@ -89,6 +100,8 @@ All notable changes to this project will be documented in this file. Changes not
89100
- 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)
90101

91102

92-
[Unreleased]: https://github.com/httpswift/swifter/compare/1.4.6...HEAD
103+
[Unreleased]: https://github.com/httpswift/swifter/compare/1.5.0...HEAD
93104
[1.4.6]: https://github.com/httpswift/swifter/compare/1.4.5...1.4.6
94105
[1.4.7]: https://github.com/httpswift/swifter/compare/1.4.6...1.4.7
106+
[1.5.0-rc.1]: https://github.com/httpswift/swifter/compare/1.4.7...1.5.0-rc.1
107+
[1.5.0]: https://github.com/httpswift/swifter/compare/1.5.0-rc.1...1.5.0

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ server.start()
7272
```ruby
7373
use_frameworks!
7474

75-
pod 'Swifter', '~> 1.4.7'
75+
pod 'Swifter', '~> 1.5.0'
7676
```
7777

7878
### Carthage? Also yes.
7979
```
80-
github "httpswift/swifter" ~> 1.4.7
80+
github "httpswift/swifter" ~> 1.5.0
8181
```
8282

8383
### Swift Package Manager.
@@ -87,7 +87,7 @@ import PackageDescription
8787
let package = Package(
8888
name: "MyServer",
8989
dependencies: [
90-
.package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.7"))
90+
.package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.5.0"))
9191
]
9292
)
9393
```

Swifter.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Pod::Spec.new do |s|
22

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

0 commit comments

Comments
 (0)