Skip to content

Commit

Permalink
chore(release): prepare for v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Gabor Boros <[email protected]>
  • Loading branch information
gabor-boros committed Oct 12, 2022
1 parent 4b5f2a9 commit 0263013
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## [0.2.0] - 2022-10-12

**Features**

- Allow all arangors supported clients ([4b5f2a9](https://github.com/gabor-boros/bb8-arangodb/commit/4b5f2a96eaabccc9dae46d41e11d2af2fac29e0f))

**Miscellaneous Tasks**

- Add dependabot integration ([3f10604](https://github.com/gabor-boros/bb8-arangodb/commit/3f10604fc5aec2ad72b5a0c98b9174886a4faeb9))

## [0.1.0] - 2022-10-12

**Features**
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bb8-arangodb"
version = "0.1.0"
version = "0.2.0"
authors = ["Gabor Boros <[email protected]>"]
edition = "2021"
description = "ArangoDB driver for bb8 based on the arangors crate."
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@ Make sure to add `bb8` and `bb8-arangodb` to your `Cargo.toml`, like:
[dependencies]
bb8 = "0.8"
bb8-arangodb = "0.1"
arangors = "0.5"
```

## Example

```rust
use bb8::Pool;
use bb8_arangodb::{ArangoConnectionManager, AuthenticationMethod};
use arangors::uclient::reqwest::ReqwestClient;
use futures_util::join_all;

#[tokio::main]
async fn main() {
let manager = ArangoConnectionManager::new(
"http://localhost:8529",
let manager = ArangoConnectionManager::<ReqwestClient>::new(
"http://localhost:8529".to_string(),
AuthenticationMethod::JWTAuth("root".to_string(), "openSesame".to_string())
);

Expand Down
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ commit_parsers = [
{ message = "^refactor", group = "Refactor"},
{ message = "^style", group = "Styling"},
{ message = "^test", group = "Testing"},
{ message = "^chore\\(release\\): prepare for", skip = true},
{ message = "^chore\\(release\\):", skip = true},
{ message = "^chore\\(changelog\\):", skip = true},
{ message = "^chore", group = "Miscellaneous Tasks"},
{ body = ".*security", group = "Security"},
Expand Down

0 comments on commit 0263013

Please sign in to comment.