diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ffc7d36..a85f93d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.10.3 (2023-03-18) + +- update `typed-builder` to 0.14 - [#115](https://github.com/ayrat555/fang/pull/115) + ## 0.10.2 (2023-02-23) ### Improved diff --git a/Cargo.toml b/Cargo.toml index 51c6d768..3b28f6cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fang" -version = "0.10.2" +version = "0.10.3" authors = ["Ayrat Badykov " , "Pepe Márquez "] description = "Background job processing library for Rust" repository = "https://github.com/ayrat555/fang" diff --git a/README.md b/README.md index a12f7edd..4fa63186 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,18 @@ Background task processing library for Rust. It uses Postgres DB as a task queue #### the Blocking feature ```toml [dependencies] -fang = { version = "0.10" , features = ["blocking"], default-features = false } +fang = { version = "0.10.3" , features = ["blocking"], default-features = false } ``` #### the Asynk feature ```toml [dependencies] -fang = { version = "0.10" , features = ["asynk"], default-features = false } +fang = { version = "0.10.3" , features = ["asynk"], default-features = false } ``` #### Both features ```toml -fang = { version = "0.10" } +fang = { version = "0.10.3" } ``` *Supports rustc 1.62+* diff --git a/docs/content/_index.md b/docs/content/_index.md index 9300752f..205e9f63 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -9,7 +9,7 @@ lead = 'Fang is a background task processing for Rust. It uses Postgres D url = "/docs/readme" url_button = "Get started" -repo_version = "GitHub v0.10.2" +repo_version = "GitHub v0.10.3" repo_license = "Open-source MIT License." repo_url = "https://github.com/ayrat555/fang"