diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cbfd499e6..b95b6763f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.2 +current_version = 0.11.0 commit = True tag = True diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index d9e3781af..abf7e4ce2 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-admin" -version = "0.10.2" +version = "0.11.0" [dependencies] anyhow = { version = "1.0", features = ["std"] } diff --git a/warpgate-common/Cargo.toml b/warpgate-common/Cargo.toml index dad69afb9..f9826c6af 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-common" -version = "0.10.2" +version = "0.11.0" [dependencies] anyhow = "1.0" diff --git a/warpgate-core/Cargo.toml b/warpgate-core/Cargo.toml index 0bed1477d..f0fad12fb 100644 --- a/warpgate-core/Cargo.toml +++ b/warpgate-core/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-core" -version = "0.10.2" +version = "0.11.0" [dependencies] warpgate-common = { version = "*", path = "../warpgate-common" } diff --git a/warpgate-database-protocols/Cargo.toml b/warpgate-database-protocols/Cargo.toml index bf3fc3dc2..685e0888f 100644 --- a/warpgate-database-protocols/Cargo.toml +++ b/warpgate-database-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate-database-protocols" -version = "0.10.2" +version = "0.11.0" description = "Core of SQLx, the rust SQL toolkit. Just the database protocol parts." license = "MIT OR Apache-2.0" edition = "2021" diff --git a/warpgate-db-entities/Cargo.toml b/warpgate-db-entities/Cargo.toml index 42cb016f2..d913cf7fb 100644 --- a/warpgate-db-entities/Cargo.toml +++ b/warpgate-db-entities/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-db-entities" -version = "0.10.2" +version = "0.11.0" [dependencies] chrono = { version = "0.4", default-features = false, features = ["serde"] } diff --git a/warpgate-db-migrations/Cargo.toml b/warpgate-db-migrations/Cargo.toml index 2536d200f..3f43a4f91 100644 --- a/warpgate-db-migrations/Cargo.toml +++ b/warpgate-db-migrations/Cargo.toml @@ -3,7 +3,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-db-migrations" publish = false -version = "0.10.2" +version = "0.11.0" [lib] diff --git a/warpgate-protocol-http/Cargo.toml b/warpgate-protocol-http/Cargo.toml index 348882ad3..2f4449efe 100644 --- a/warpgate-protocol-http/Cargo.toml +++ b/warpgate-protocol-http/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-http" -version = "0.10.2" +version = "0.11.0" [dependencies] anyhow = "1.0" diff --git a/warpgate-protocol-mysql/Cargo.toml b/warpgate-protocol-mysql/Cargo.toml index 397878c7d..69469d5b4 100644 --- a/warpgate-protocol-mysql/Cargo.toml +++ b/warpgate-protocol-mysql/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-mysql" -version = "0.10.2" +version = "0.11.0" [dependencies] warpgate-common = { version = "*", path = "../warpgate-common" } diff --git a/warpgate-protocol-postgres/Cargo.toml b/warpgate-protocol-postgres/Cargo.toml index 562de6bd0..f03474d91 100644 --- a/warpgate-protocol-postgres/Cargo.toml +++ b/warpgate-protocol-postgres/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-postgres" -version = "0.10.1" +version = "0.11.0" [dependencies] warpgate-common = { version = "*", path = "../warpgate-common" } diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 67791bd12..c9ee6319b 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-ssh" -version = "0.10.2" +version = "0.11.0" [dependencies] ansi_term = "0.12" diff --git a/warpgate-sso/Cargo.toml b/warpgate-sso/Cargo.toml index 75abe5419..7ffd27359 100644 --- a/warpgate-sso/Cargo.toml +++ b/warpgate-sso/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-sso" -version = "0.10.2" +version = "0.11.0" [dependencies] bytes = "1.4" diff --git a/warpgate-web/Cargo.toml b/warpgate-web/Cargo.toml index 20c016dae..ae56fa00d 100644 --- a/warpgate-web/Cargo.toml +++ b/warpgate-web/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-web" -version = "0.10.2" +version = "0.11.0" [dependencies] rust-embed = "8.3" diff --git a/warpgate/Cargo.toml b/warpgate/Cargo.toml index e17322b3e..b9774d29f 100644 --- a/warpgate/Cargo.toml +++ b/warpgate/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate" -version = "0.10.2" +version = "0.11.0" [dependencies] ansi_term = "0.12"