Skip to content

Commit

Permalink
Version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Ignition committed Nov 20, 2021
1 parent 80ea81c commit 4aa81cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Catbird.podspec
Original file line number Diff line number Diff line change
@@ -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' }
Expand Down
4 changes: 2 additions & 2 deletions Packages/CatbirdApp/Sources/CatbirdApp/configure.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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/")

Expand All @@ -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
Expand Down

0 comments on commit 4aa81cc

Please sign in to comment.