diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f6c929..e4dbf2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.3.1 (2021-07-11) - Simplify usage by re-exporting serde traits - [#3](https://github.com/ayrat555/fang/pull/3) diff --git a/Cargo.toml b/Cargo.toml index c7cd96a..679d359 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fang" -version = "0.3.0" +version = "0.3.1" authors = ["Ayrat Badykov "] description = "Background job processing library for Rust" repository = "https://github.com/ayrat555/fang" diff --git a/README.md b/README.md index 7347901..763f9bd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@

fang

+[![Crates.io][s1]][ci] [![docs page][docs-badge]][docs] ![test][ga-test] ![style][ga-style] + # Fang Background job processing library for Rust. @@ -15,7 +17,7 @@ Note that the README follows the master branch, to see instructions for the late ```toml [dependencies] -fang = "0.4" +fang = "0.3.1" ``` 2. Create `fang_tasks` table in the Postgres database. The migration can be found in [the migrations directory](https://github.com/ayrat555/fang/blob/master/migrations/2021-06-05-112912_create_fang_tasks/up.sql). @@ -198,3 +200,11 @@ WorkerPool::new_with_params(10, worker_params).start(); ## Author Ayrat Badykov (@ayrat555) + + +[s1]: https://img.shields.io/crates/v/fang.svg +[docs-badge]: https://img.shields.io/badge/docs-website-blue.svg +[ci]: https://crates.io/crates/fang +[docs]: https://docs.rs/fang/ +[ga-test]: https://github.com/ayrat555/fang/actions/workflows/rust.yml/badge.svg +[ga-style]: https://github.com/ayrat555/fang/actions/workflows/style.yml/badge.svg