diff --git a/ChangeLog.md b/CHANGELOG.md similarity index 96% rename from ChangeLog.md rename to CHANGELOG.md index c178d3b..fcfc6b8 100644 --- a/ChangeLog.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ 2024-08 +2.2.5 + +- maintenance update + 2.2.4 - Issue note in ci with time dependency, which a simple `cargo update` fixes diff --git a/Cargo.lock b/Cargo.lock index d35697c..3de1e8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,9 +100,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "attohttpc" -version = "0.27.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "184f5e6cce583a9db6b6f8d772a42cfce5b78e7c3ef26118cec3ce4c8c14969b" +checksum = "9a13149d0cf3f7f9b9261fad4ec63b2efbf9a80665f52def86282d26255e6331" dependencies = [ "flate2", "http 1.1.0", @@ -182,12 +182,11 @@ dependencies = [ [[package]] name = "axum-test" -version = "14.10.0" +version = "15.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167294800740b4b6bc7bfbccbf3a1d50a6c6e097342580ec4c11d1672e456292" +checksum = "f07085d2d15feb2fa8b5a347ed637af4fceb44966e709f0f3f1c2b930ee2a710" dependencies = [ "anyhow", - "async-trait", "auto-future", "axum", "bytes", @@ -895,7 +894,7 @@ dependencies = [ [[package]] name = "odss2dash" -version = "2.2.4" +version = "2.2.5" dependencies = [ "anstyle", "attohttpc", diff --git a/Cargo.toml b/Cargo.toml index ad39325..c881011 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odss2dash" -version = "2.2.4" +version = "2.2.5" authors = [ "Carlos A. Rueda ", ] @@ -25,7 +25,7 @@ edition = "2021" [dependencies] anstyle = "1.0.1" # for coloring clap help clap = { version = "4.3.10", features = ["derive", "unstable-styles"] } -attohttpc = { version = "0.27.0", features = ["json"] } +attohttpc = { version = "0.28.0", features = ["json"] } axum = "0.7.2" dotenv = "0.15.0" env_logger = "0.11.1" @@ -34,7 +34,7 @@ hyper = { version = "1.1.0", features = ["full"] } log = "0.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.64" -sysinfo = "0.30.5" +sysinfo = "0.30.13" tokio = { version = "1", features = ["full"] } tokio-shutdown = "0.1.4" tower-http = { version = "0.5.0", features = ["cors"] } @@ -43,7 +43,7 @@ utoipa = { version = "4.1.0", features = ["axum_extras"] } utoipa-swagger-ui = { version = "6.0.0", features = ["axum"] } [dev-dependencies] -axum-test = "14.0.0" +axum-test = "15.3.1" pretty_assertions = "1.4.0" [profile.release] diff --git a/justfile b/justfile index c025fcc..099df5d 100644 --- a/justfile +++ b/justfile @@ -55,7 +55,7 @@ tags: # Create and push git tag tag-and-push: #!/usr/bin/env bash - version=$(cat Cargo.toml | grep version | head -1 | cut -d\" -f2) + version=$(tq -f Cargo.toml 'package.version') echo "tagging and pushing v${version}" git tag v${version} git push origin v${version}