Skip to content

Commit

Permalink
2.2.5 maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
carueda committed Aug 16, 2024
1 parent f916fbe commit 454461a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 5 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odss2dash"
version = "2.2.4"
version = "2.2.5"
authors = [
"Carlos A. Rueda <[email protected]>",
]
Expand All @@ -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"
Expand All @@ -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"] }
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 454461a

Please sign in to comment.