diff --git a/Cargo.lock b/Cargo.lock index b6eb20af7..4e30489cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,9 +134,9 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "aws-lc-rs" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8a47f2fb521b70c11ce7369a6c5fa4bd6af7e5d62ec06303875bafe7c6ba245" +checksum = "4ae74d9bd0a7530e8afd1770739ad34b36838829d6ad61818f9230f683f5ad77" dependencies = [ "aws-lc-sys", "mirai-annotations", @@ -146,9 +146,9 @@ dependencies = [ [[package]] name = "aws-lc-sys" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2927c7af777b460b7ccd95f8b67acd7b4c04ec8896bf0c8e80ba30523cffc057" +checksum = "2e89b6941c2d1a7045538884d6e760ccfffdf8e1ffc2613d8efa74305e1f3752" dependencies = [ "bindgen", "cc", @@ -1599,9 +1599,9 @@ dependencies = [ [[package]] name = "sdd" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eb0dde0ccd15e337a3cf738a9a38115c6d8e74795d074e73973dad3d229a897" +checksum = "85f05a494052771fc5bd0619742363b5e24e5ad72ab3111ec2e27925b8edc5f3" [[package]] name = "serde" @@ -1712,7 +1712,7 @@ dependencies = [ [[package]] name = "sozu" -version = "1.0.3" +version = "1.1.0-rc.0" dependencies = [ "clap", "jemallocator", @@ -1735,7 +1735,7 @@ dependencies = [ [[package]] name = "sozu-command-lib" -version = "1.0.3" +version = "1.1.0-rc.0" dependencies = [ "hex", "libc", @@ -1779,7 +1779,7 @@ dependencies = [ [[package]] name = "sozu-lib" -version = "1.0.3" +version = "1.1.0-rc.0" dependencies = [ "anyhow", "cookie-factory", @@ -1898,18 +1898,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.62" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" +checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.62" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" +checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", @@ -2001,9 +2001,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.14" +version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" +checksum = "ac2caab0bf757388c6c0ae23b3293fdb463fee59434529014f85e3263b995c28" dependencies = [ "serde", "serde_spanned", @@ -2022,9 +2022,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.15" +version = "0.22.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59a3a72298453f564e2b111fa896f8d07fabb36f51f06d7e875fc5e0b5a3ef1" +checksum = "278f3d518e152219c994ce877758516bca5e118eaed6996192a774fb9fbf0788" dependencies = [ "indexmap", "serde", diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 12994c285..95bb64b93 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/sozu-proxy/sozu" readme = "README.md" documentation = "https://docs.rs/sozu" homepage = "https://sozu.io" -version = "1.0.3" +version = "1.1.0-rc.0" license = "AGPL-3.0" authors = [ "Geoffroy Couprie ", @@ -34,8 +34,8 @@ tempfile = "^3.10.1" termion = "^4.0.0" thiserror = "^1.0.61" -sozu-command-lib = { path = "../command", version = "^1.0.3" } -sozu-lib = { path = "../lib", version = "^1.0.3" } +sozu-command-lib = { path = "../command", version = "^1.1.0-rc.0" } +sozu-lib = { path = "../lib", version = "1.1.0-rc.0" } [target.'cfg(target_os="linux")'.dependencies] num_cpus = "^1.16.0" diff --git a/command/Cargo.toml b/command/Cargo.toml index 4b6bff286..c92037d03 100644 --- a/command/Cargo.toml +++ b/command/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/sozu-proxy/sozu" readme = "README.md" documentation = "https://docs.rs/sozu-command-lib" homepage = "https://sozu.io" -version = "1.0.3" +version = "1.1.0-rc.0" license = "LGPL-3.0" authors = [ "Geoffroy Couprie ", diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index f8b8a8151..64533f7ef 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -14,5 +14,5 @@ rustls = { version = "^0.21.10", features = ["dangerous_configuration"] } time = "^0.3.36" tokio = { version = "1.37.0", features = ["net", "rt-multi-thread"] } -sozu-command-lib = { path = "../command", version = "^1.0.3" } -sozu-lib = { path = "../lib", version = "^1.0.3" } +sozu-command-lib = { path = "../command", version = "^1.1.0-rc.0" } +sozu-lib = { path = "../lib", version = "^1.1.0-rc.0" } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 5de774146..355dd94c8 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/sozu-proxy/sozu" readme = "README.md" documentation = "https://docs.rs/sozu-lib" homepage = "https://sozu.io" -version = "1.0.3" +version = "1.1.0-rc.0" license = "AGPL-3.0" authors = [ "Clément Delafargue ", @@ -52,7 +52,7 @@ thiserror = "^1.0.61" time = "^0.3.36" once_cell = "1.19.0" -sozu-command-lib = { path = "../command", version = "^1.0.3" } +sozu-command-lib = { path = "../command", version = "1.1.0-rc.0" } [dev-dependencies] quickcheck = "^1.0.3" diff --git a/os-build/archlinux/PKGBUILD b/os-build/archlinux/PKGBUILD index d9c9d7fa7..df4299fb1 100644 --- a/os-build/archlinux/PKGBUILD +++ b/os-build/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jan-Erik Rediger pkgname=sozu-git -pkgver=1.0.3 +pkgver=1.1.0-rc.0 pkgrel=1 pkgdesc="HTTP reverse proxy, configurable at runtime, fast and safe, built in Rust" arch=('i686' 'x86_64') diff --git a/os-build/linux-rpm/sozu.spec b/os-build/linux-rpm/sozu.spec index 996c6e274..9a270ba5a 100755 --- a/os-build/linux-rpm/sozu.spec +++ b/os-build/linux-rpm/sozu.spec @@ -6,7 +6,7 @@ Summary: A lightweight, fast, always-up reverse proxy server. Name: sozu -Version: 1.0.3 +Version: 1.1.0-rc.0 Release: 1%{?dist} Epoch: 1 License: AGPL-3.0