diff --git a/Catbird.podspec b/Catbird.podspec index b17d054..e01098d 100644 --- a/Catbird.podspec +++ b/Catbird.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Catbird' - s.version = '0.8.2' + s.version = '0.9.0' s.summary = 'Mock server for UI tests' s.homepage = 'https://github.com/RedMadRobot/catbird' s.license = { type: 'MIT', file: 'LICENSE' } diff --git a/Packages/CatbirdApp/Sources/CatbirdApp/configure.swift b/Packages/CatbirdApp/Sources/CatbirdApp/configure.swift index 2ddae61..e1345d2 100644 --- a/Packages/CatbirdApp/Sources/CatbirdApp/configure.swift +++ b/Packages/CatbirdApp/Sources/CatbirdApp/configure.swift @@ -3,7 +3,7 @@ import Vapor public struct CatbirdInfo: Content { public static let current = CatbirdInfo( - version: "0.8.2", + version: "0.9.0", domain: "com.redmadrobot.catbird", github: "https://github.com/redmadrobot/catbird/") @@ -13,7 +13,7 @@ public struct CatbirdInfo: Content { } public func configure(_ app: Application, _ configuration: AppConfiguration) throws { - app.routes.defaultMaxBodySize = ByteCount(stringLiteral: configuration.maxBodySize) + app.routes.defaultMaxBodySize = ByteCount(stringLiteral: configuration.maxBodySize) let info = CatbirdInfo.current // MARK: - Stores