From 5071b2302e12620cf133baca87421df6363c5435 Mon Sep 17 00:00:00 2001 From: Michael Nelo Date: Wed, 26 Apr 2023 20:32:16 -0400 Subject: [PATCH] release(0.5.0): Updated crate versions --- Cargo.toml | 2 +- configuration/Cargo.toml | 2 +- intrinsics/Cargo.toml | 4 +++- macros/Cargo.toml | 2 +- models/Cargo.toml | 2 +- pipeline-cache-manager/Cargo.toml | 2 +- pipeline-driver/Cargo.toml | 2 +- pipeline-request-handler/Cargo.toml | 2 +- pipeline/Cargo.toml | 4 +++- 9 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 81dc9e1..992f622 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "carp" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "CARP is a reverse proxy and HTTP cache made to make caching deterministic" diff --git a/configuration/Cargo.toml b/configuration/Cargo.toml index dde86f3..1c282a4 100644 --- a/configuration/Cargo.toml +++ b/configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "configuration" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the configuration construction logic of CARP" edition = "2021" diff --git a/intrinsics/Cargo.toml b/intrinsics/Cargo.toml index 77eae49..36b5846 100644 --- a/intrinsics/Cargo.toml +++ b/intrinsics/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "intrinsics" -version = "0.4.0" +version = "0.5.0" +authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] +description = "Crate providing likely/unlikely processor hints" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 5120c8a..35f622f 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macros" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding some useful macros to use on CARP" edition = "2021" diff --git a/models/Cargo.toml b/models/Cargo.toml index 6f9bfb6..ab5abb2 100644 --- a/models/Cargo.toml +++ b/models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "models" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the models that compose the global state of CARP" edition = "2021" diff --git a/pipeline-cache-manager/Cargo.toml b/pipeline-cache-manager/Cargo.toml index 3aeea94..bfae4c8 100644 --- a/pipeline-cache-manager/Cargo.toml +++ b/pipeline-cache-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pipeline-cache-manager" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the caching logic, including invalidation and determinism" edition = "2021" diff --git a/pipeline-driver/Cargo.toml b/pipeline-driver/Cargo.toml index 232fade..3081ede 100644 --- a/pipeline-driver/Cargo.toml +++ b/pipeline-driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pipeline-driver" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the logic to start the route handlers, caches and plugins of CARP" edition = "2021" diff --git a/pipeline-request-handler/Cargo.toml b/pipeline-request-handler/Cargo.toml index db2c6ae..54977b8 100644 --- a/pipeline-request-handler/Cargo.toml +++ b/pipeline-request-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pipeline-request-handler" -version = "0.4.0" +version = "0.5.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/pipeline/Cargo.toml b/pipeline/Cargo.toml index 5a674b9..b23f181 100644 --- a/pipeline/Cargo.toml +++ b/pipeline/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "pipeline" -version = "0.4.0" +version = "0.5.0" +authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] +description = "Crate holding the core that composes the request handling, caching and plugin management of CARP" edition = "2021" [dependencies] -- GitLab