Skip to content

Commit b6455e5

Browse files
Version 0.9.0
1 parent a79a3ad commit b6455e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Catbird.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Catbird'
3-
s.version = '0.8.2'
3+
s.version = '0.9.0'
44
s.summary = 'Mock server for UI tests'
55
s.homepage = 'https://github.com/RedMadRobot/catbird'
66
s.license = { type: 'MIT', file: 'LICENSE' }

Packages/CatbirdApp/Sources/CatbirdApp/configure.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Vapor
33

44
public struct CatbirdInfo: Content {
55
public static let current = CatbirdInfo(
6-
version: "0.8.2",
6+
version: "0.9.0",
77
domain: "com.redmadrobot.catbird",
88
github: "https://github.com/redmadrobot/catbird/")
99

@@ -13,7 +13,7 @@ public struct CatbirdInfo: Content {
1313
}
1414

1515
public func configure(_ app: Application, _ configuration: AppConfiguration) throws {
16-
app.routes.defaultMaxBodySize = ByteCount(stringLiteral: configuration.maxBodySize)
16+
app.routes.defaultMaxBodySize = ByteCount(stringLiteral: configuration.maxBodySize)
1717
let info = CatbirdInfo.current
1818

1919
// MARK: - Stores

0 commit comments

Comments
 (0)