bump version to 0.4.1

This commit is contained in:
Ayrat Badykov 2021-08-22 21:29:27 +03:00
parent 4bf654c9b5
commit 78f27eac3d
No known key found for this signature in database
GPG key ID: 16AE533AB7A3E8C6
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## 0.4.1 (2021-08-22)
- Do not use env-logger - [#11](https://github.com/ayrat555/fang/pull/11)
## 0.4.0 (2021-07-31)
### [#8](https://github.com/ayrat555/fang/pull/8):

View file

@ -1,6 +1,6 @@
[package]
name = "fang"
version = "0.4.0"
version = "0.4.1"
authors = ["Ayrat Badykov <ayratin555@gmail.com>"]
description = "Background job processing library for Rust"
repository = "https://github.com/ayrat555/fang"

View file

@ -14,7 +14,7 @@ Background job processing library for Rust. It uses Postgres DB as a task queue.
```toml
[dependencies]
fang = "0.4.0"
fang = "0.4.1"
serde = { version = "1.0", features = ["derive"] }
```