diff --git a/CHANGELOG.md b/CHANGELOG.md index f9dbad5..19506bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## [unreleased] +## [0.2.3] - 2024-01-19 ### Miscellaneous Tasks - Add git hooks ([#35](https://oolong.ludwig.dog/pitbuster/huellas/issues/35)) -- Add sqlfluff config +- Add sqlfluff config ([#36](https://oolong.ludwig.dog/pitbuster/huellas/issues/36)) ## [0.2.2] - 2023-11-10 diff --git a/Cargo.lock b/Cargo.lock index 7924ee5..c3b34b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -723,7 +723,7 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "huellas" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 9732862..3c83882 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "huellas" -version = "0.2.2" +version = "0.2.3" edition = "2021" license = "AGPL-3.0" @@ -10,6 +10,8 @@ axum = { version = "0.7.4", default-features = false, features = [ "json", "tracing", "tokio", + "http1", + "http2", ] } dotenvy = "0.15.7" futures = { version = "0.3.30", default-features = false } @@ -37,5 +39,4 @@ tracing-subscriber = { version = "0.3.18", default-features = false, features = ] } [dev-dependencies] -# axum-test-helper = "0.3.0" axum-test = "14.2.2"