Skip to content

Commit

Permalink
cargo: bumps version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Apr 23, 2024
1 parent 8a442da commit 6d962bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elegant-departure"
version = "0.2.1"
version = "0.3.0"
authors = ["David Herberth <github@dav1d.de>"]
description = "Utility crate to simplify graceful shutdown"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ used by adding it to your dependencies in your project's `Cargo.toml`.

```toml
[dependencies]
elegant-departure = "0.2"
elegant-departure = "0.3"
```

For a optional tokio integration, you need to enable the tokio feature:

```toml
[dependencies]
elegant-departure = { version = "0.2", features = "tokio" }
elegant-departure = { version = "0.3", features = "tokio" }
```

## Example
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
//!
//! ```toml
//! [dependencies]
//! elegant-departure = "0.2"
//! elegant-departure = "0.3"
//! ```
//!
//! For a optional tokio integration, you need to enable the tokio feature:
//!
//! ```toml
//! [dependencies]
//! elegant-departure = { version = "0.2", features = "tokio" }
//! elegant-departure = { version = "0.3", features = "tokio" }
//! ```
//!
//! # Example: Axum
Expand Down

0 comments on commit 6d962bc

Please sign in to comment.