diff --git a/CHANGELOG.md b/CHANGELOG.md index 975c8fb..cb6d2a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.11.0-rc1 (2024-04-22) + +- Fix blocking features - [#151](https://github.com/ayrat555/fang/pull/151) + ## 0.11.0-rc0 (2024-04-19) - [#141](https://github.com/ayrat555/fang/pull/141) - `AsyncQueue` Postgres backend reimplemented in sqlx - `AsyncQueue` Sqlite backend implemented in sqlx diff --git a/fang/Cargo.toml b/fang/Cargo.toml index 3d7c793..5d8bc10 100644 --- a/fang/Cargo.toml +++ b/fang/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fang" -version = "0.11.0-rc0" +version = "0.11.0-rc1" authors = ["Ayrat Badykov " , "Pepe Márquez "] description = "Background job processing library for Rust" repository = "https://github.com/ayrat555/fang" diff --git a/fang/README.md b/fang/README.md index 4314f18..91d262b 100644 --- a/fang/README.md +++ b/fang/README.md @@ -31,7 +31,7 @@ Here are some of the fang's key features: ```toml [dependencies] -fang = { version = "0.11.0-rc0" , features = ["blocking"], default-features = false } +fang = { version = "0.11.0-rc1" , features = ["blocking"], default-features = false } ``` #### the Asynk feature @@ -40,21 +40,21 @@ fang = { version = "0.11.0-rc0" , features = ["blocking"], default-features = fa ```toml [dependencies] -fang = { version = "0.11.0-rc0" , features = ["asynk-postgres"], default-features = false } +fang = { version = "0.11.0-rc1" , features = ["asynk-postgres"], default-features = false } ``` - SQLite as a queue ```toml [dependencies] -fang = { version = "0.11.0-rc0" , features = ["asynk-sqlite"], default-features = false } +fang = { version = "0.11.0-rc1" , features = ["asynk-sqlite"], default-features = false } ``` - MySQL as a queue ```toml [dependencies] -fang = { version = "0.11.0-rc0" , features = ["asynk-mysql"], default-features = false } +fang = { version = "0.11.0-rc1" , features = ["asynk-mysql"], default-features = false } ``` #### the Asynk feature with derive macro @@ -63,13 +63,13 @@ Substitute `database` with your desired backend. ```toml [dependencies] -fang = { version = "0.11.0-rc0" , features = ["asynk-{database}", "derive-error" ], default-features = false } +fang = { version = "0.11.0-rc1" , features = ["asynk-{database}", "derive-error" ], default-features = false } ``` #### All features ```toml -fang = { version = "0.11.0-rc0" } +fang = { version = "0.11.0-rc1" } ``` _Supports rustc 1.77+_ @@ -80,7 +80,7 @@ Migrations can be also run as code, importing the feature `migrations-{database} ```toml [dependencies] -fang = { version = "0.11.0-rc0" , features = ["asynk-postgres", "migrations-postgres" ], default-features = false } +fang = { version = "0.11.0-rc1" , features = ["asynk-postgres", "migrations-postgres" ], default-features = false } ``` ```rust