Skip to content

Commit

Permalink
release 0.11.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrat555 committed Apr 22, 2024
1 parent fab5c1c commit 3bc5958
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion fang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fang"
version = "0.11.0-rc0"
version = "0.11.0-rc1"
authors = ["Ayrat Badykov <[email protected]>" , "Pepe Márquez <[email protected]>"]
description = "Background job processing library for Rust"
repository = "https://github.com/ayrat555/fang"
Expand Down
14 changes: 7 additions & 7 deletions fang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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+_
Expand All @@ -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
Expand Down

0 comments on commit 3bc5958

Please sign in to comment.