Skip to content

Commit 8b5afb4

Browse files
authored
Merge pull request #415 from Vkt0r/1.4.7
Release 1.4.7
2 parents 38470f0 + de11039 commit 8b5afb4

File tree

9 files changed

+21
-16
lines changed

9 files changed

+21
-16
lines changed

CHANGELOG.md

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

21+
* Nothing yet.
22+
23+
# [1.4.7]
24+
2125
## Added
2226
- 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)
2327
- 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
4347
- Include the `CHANGELOG.md` and `README.md` in the Xcode-Project for easy access / changes.
4448

4549
## Removed
46-
- 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)
50+
- 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)
4751

4852
# [1.4.6]
4953
## Added
@@ -63,3 +67,4 @@ All notable changes to this project will be documented in this file. Changes not
6367

6468
[Unreleased]: https://github.com/httpswift/swifter/compare/1.4.6...HEAD
6569
[1.4.6]: https://github.com/httpswift/swifter/compare/1.4.5...1.4.6
70+
[1.4.7]: https://github.com/httpswift/swifter/compare/1.4.6...1.4.7

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.6'
75+
pod 'Swifter', '~> 1.4.7'
7676
```
7777

7878
### Carthage? Also yes.
7979
```
80-
github "httpswift/swifter" ~> 1.4.6
80+
github "httpswift/swifter" ~> 1.4.7
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.6"))
90+
.package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.7"))
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.4.6"
4+
s.version = "1.4.7"
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 = "8.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.4.6" }
12+
s.source = { :git => "https://github.com/httpswift/swifter.git", :tag => "1.4.7" }
1313
s.source_files = 'XCode/Sources/*.{swift}'
1414

1515
end

XCode/Sources/HttpServer.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99

1010
public class HttpServer: HttpServerIO {
1111

12-
public static let VERSION = "1.4.6"
12+
public static let VERSION = "1.4.7"
1313

1414
private let router = HttpRouter()
1515

XCode/Swifter.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@
12701270
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
12711271
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
12721272
COPY_PHASE_STRIP = NO;
1273-
CURRENT_PROJECT_VERSION = 1.4.6;
1273+
CURRENT_PROJECT_VERSION = 1.4.7;
12741274
ENABLE_STRICT_OBJC_MSGSEND = YES;
12751275
ENABLE_TESTABILITY = YES;
12761276
GCC_C_LANGUAGE_STANDARD = gnu99;
@@ -1332,7 +1332,7 @@
13321332
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
13331333
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
13341334
COPY_PHASE_STRIP = YES;
1335-
CURRENT_PROJECT_VERSION = 1.4.6;
1335+
CURRENT_PROJECT_VERSION = 1.4.7;
13361336
ENABLE_NS_ASSERTIONS = NO;
13371337
ENABLE_STRICT_OBJC_MSGSEND = YES;
13381338
GCC_C_LANGUAGE_STANDARD = gnu99;

XCode/SwifterMac/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.4.6</string>
18+
<string>1.4.7</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>NSHumanReadableCopyright</key>
24-
<string>Copyright © 2015 Damian Kołakowski. All rights reserved.</string>
24+
<string>Copyright © 2019 Damian Kołakowski. All rights reserved.</string>
2525
<key>NSPrincipalClass</key>
2626
<string></string>
2727
</dict>

XCode/SwifterSampleiOS/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.4.6</string>
18+
<string>1.4.7</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

XCode/SwifteriOS/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.4.6</string>
18+
<string>1.4.7</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>NSHumanReadableCopyright</key>
24-
<string>Copyright © 2015 Damian Kołakowski. All rights reserved.</string>
24+
<string>Copyright © 2019 Damian Kołakowski. All rights reserved.</string>
2525
<key>NSPrincipalClass</key>
2626
<string></string>
2727
</dict>

XCode/SwiftertvOS/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.4.6</string>
18+
<string>1.4.7</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>NSHumanReadableCopyright</key>
24-
<string>Copyright © 2015 Damian Kołakowski. All rights reserved.</string>
24+
<string>Copyright © 2019 Damian Kołakowski. All rights reserved.</string>
2525
<key>NSPrincipalClass</key>
2626
<string></string>
2727
</dict>

0 commit comments

Comments
 (0)