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 046604e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ All notable changes to this project will be documented in this file. Changes not
- Update the project for Xcode 11.1. ([#438](https://github.com/httpswift/swifter/pull/438)) by [@Vkt0r](https://github.com/Vkt0r)
- Add optional 'Content-Type' to Data HttpResponse. ([#450](https://github.com/httpswift/swifter/pull/450)) by [@SoftwareEngineerChris](https://github.com/SoftwareEngineerChris)
- Support Xcode 12 and Swift 5+. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
- Add two new cases to the responses (`notAcceptable`, `tooManyRequests`). ([#437](https://github.com/httpswift/swifter/pull/437)) by [@KKuzmichev](https://github.com/KKuzmichev)

## Changed

Expand Down Expand Up @@ -89,6 +90,7 @@ 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]: https://github.com/httpswift/swifter/compare/1.4.7...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" => "kolakowski.damian@gmail.com" }
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 046604e

Please sign in to comment.