Skip to content

Commit 046604e

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

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ All notable changes to this project will be documented in this file. Changes not
2828
- Update the project for Xcode 11.1. ([#438](https://github.com/httpswift/swifter/pull/438)) by [@Vkt0r](https://github.com/Vkt0r)
2929
- Add optional 'Content-Type' to Data HttpResponse. ([#450](https://github.com/httpswift/swifter/pull/450)) by [@SoftwareEngineerChris](https://github.com/SoftwareEngineerChris)
3030
- Support Xcode 12 and Swift 5+. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
31+
- Add two new cases to the responses (`notAcceptable`, `tooManyRequests`). ([#437](https://github.com/httpswift/swifter/pull/437)) by [@KKuzmichev](https://github.com/KKuzmichev)
3132

3233
## Changed
3334

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

9192

92-
[Unreleased]: https://github.com/httpswift/swifter/compare/1.4.6...HEAD
93+
[Unreleased]: https://github.com/httpswift/swifter/compare/1.5.0...HEAD
9394
[1.4.6]: https://github.com/httpswift/swifter/compare/1.4.5...1.4.6
9495
[1.4.7]: https://github.com/httpswift/swifter/compare/1.4.6...1.4.7
96+
[1.5.0]: https://github.com/httpswift/swifter/compare/1.4.7...1.5.0

README.md

Lines changed: 3 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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)