diff --git a/CHANGELOG.md b/CHANGELOG.md index a87ca892..1067b096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ All notable changes to this project will be documented in this file. Changes not # [Unreleased] +* Nothing yet. + +# [1.4.7] + ## Added - A new `CHANGELOG.md` to keep track of changes in the project. ([#385](https://github.com/httpswift/swifter/pull/385)) by [@Vkt0r](https://github.com/Vkt0r) - Added [Danger](https://danger.systems/ruby/) and Swiftlint to the project. ([#398](https://github.com/httpswift/swifter/pull/398)) by [@Vkt0r](https://github.com/Vkt0r) @@ -43,7 +47,7 @@ All notable changes to this project will be documented in this file. Changes not - Include the `CHANGELOG.md` and `README.md` in the Xcode-Project for easy access / changes. ## Removed -- Dropped macOS 10.9 support [#404](https://github.com/httpswift/swifter/pull/404)), [#408](https://github.com/httpswift/swifter/pull/408)) by [@mazyod](https://github.com/mazyod), [@Vkt0r](https://github.com/Vkt0r) +- Dropped macOS 10.9 support ([#404](https://github.com/httpswift/swifter/pull/404), [#408](https://github.com/httpswift/swifter/pull/408)) by [@mazyod](https://github.com/mazyod), [@Vkt0r](https://github.com/Vkt0r) # [1.4.6] ## Added @@ -63,3 +67,4 @@ All notable changes to this project will be documented in this file. Changes not [Unreleased]: https://github.com/httpswift/swifter/compare/1.4.6...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 diff --git a/README.md b/README.md index 25cfed1c..937d47db 100644 --- a/README.md +++ b/README.md @@ -72,12 +72,12 @@ server.start() ```ruby use_frameworks! -pod 'Swifter', '~> 1.4.6' +pod 'Swifter', '~> 1.4.7' ``` ### Carthage? Also yes. ``` -github "httpswift/swifter" ~> 1.4.6 +github "httpswift/swifter" ~> 1.4.7 ``` ### Swift Package Manager. @@ -87,7 +87,7 @@ import PackageDescription let package = Package( name: "MyServer", dependencies: [ - .package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.6")) + .package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.7")) ] ) ``` diff --git a/Swifter.podspec b/Swifter.podspec index c633d49f..e094b954 100644 --- a/Swifter.podspec +++ b/Swifter.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Swifter" - s.version = "1.4.6" + s.version = "1.4.7" s.summary = "Tiny http server engine written in Swift programming language." s.homepage = "https://github.com/glock45/swifter" s.license = { :type => 'Copyright', :file => 'LICENSE' } @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.10" s.tvos.deployment_target = "9.0" - s.source = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.4.6" } + s.source = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.4.7" } s.source_files = 'XCode/Sources/*.{swift}' end \ No newline at end of file diff --git a/XCode/Sources/HttpServer.swift b/XCode/Sources/HttpServer.swift index fea6d9ec..70c67ce2 100644 --- a/XCode/Sources/HttpServer.swift +++ b/XCode/Sources/HttpServer.swift @@ -9,7 +9,7 @@ import Foundation public class HttpServer: HttpServerIO { - public static let VERSION = "1.4.6" + public static let VERSION = "1.4.7" private let router = HttpRouter() diff --git a/XCode/Swifter.xcodeproj/project.pbxproj b/XCode/Swifter.xcodeproj/project.pbxproj index 6cffff10..ee198128 100644 --- a/XCode/Swifter.xcodeproj/project.pbxproj +++ b/XCode/Swifter.xcodeproj/project.pbxproj @@ -1270,7 +1270,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1.4.6; + CURRENT_PROJECT_VERSION = 1.4.7; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu99; @@ -1332,7 +1332,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 1.4.6; + CURRENT_PROJECT_VERSION = 1.4.7; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; diff --git a/XCode/SwifterMac/Info.plist b/XCode/SwifterMac/Info.plist index 7ff005fe..15925a4f 100644 --- a/XCode/SwifterMac/Info.plist +++ b/XCode/SwifterMac/Info.plist @@ -15,13 +15,13 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.4.6 + 1.4.7 CFBundleSignature ???? CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright - Copyright © 2015 Damian Kołakowski. All rights reserved. + Copyright © 2019 Damian Kołakowski. All rights reserved. NSPrincipalClass diff --git a/XCode/SwifterSampleiOS/Info.plist b/XCode/SwifterSampleiOS/Info.plist index b2f376c3..207d91c0 100644 --- a/XCode/SwifterSampleiOS/Info.plist +++ b/XCode/SwifterSampleiOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.4.6 + 1.4.7 CFBundleSignature ???? CFBundleVersion diff --git a/XCode/SwifteriOS/Info.plist b/XCode/SwifteriOS/Info.plist index 7ff005fe..15925a4f 100644 --- a/XCode/SwifteriOS/Info.plist +++ b/XCode/SwifteriOS/Info.plist @@ -15,13 +15,13 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.4.6 + 1.4.7 CFBundleSignature ???? CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright - Copyright © 2015 Damian Kołakowski. All rights reserved. + Copyright © 2019 Damian Kołakowski. All rights reserved. NSPrincipalClass diff --git a/XCode/SwiftertvOS/Info.plist b/XCode/SwiftertvOS/Info.plist index 7ff005fe..15925a4f 100644 --- a/XCode/SwiftertvOS/Info.plist +++ b/XCode/SwiftertvOS/Info.plist @@ -15,13 +15,13 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.4.6 + 1.4.7 CFBundleSignature ???? CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright - Copyright © 2015 Damian Kołakowski. All rights reserved. + Copyright © 2019 Damian Kołakowski. All rights reserved. NSPrincipalClass