Skip to content

Commit

Permalink
Bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dobaksz committed Feb 22, 2022
1 parent db1cbcb commit 99e856a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changlelog

## 3.0.0
- Core code made idependent of `chrono` crate, `chrono` feature is added to disable support for that crate
- Added support for returning results in `time` crate format

## 2.1.0
- New configuration API, which allows to set instance config without making it mutable

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 = "rsntp"
version = "2.1.0"
version = "3.0.0"
authors = ["Szilveszter Dobák <dobaksz@gmail.com>"]
repository = "https://github.com/dobaksz/rsntp"
documentation = "https://docs.rs/rsntp"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
rsntp = "2.1.0"
rsntp = "3.0.0"
```

Obtain the current local time with the blocking API:
Expand Down Expand Up @@ -101,7 +101,7 @@ dependency to `tokio` which reduces crate dependencies significantly.

```toml
[dependencies]
rsntp = { version = "2.1.0", default-features = false }
rsntp = { version = "3.0.0", default-features = false }
```

## System clock assumptions
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
rsntp = "2.1.0"
rsntp = "3.0.0"
```
Obtain the current local time with the blocking API:
Expand Down Expand Up @@ -109,7 +109,7 @@ dependency to `tokio` which reduces crate dependencies significantly.
```toml
[dependencies]
rsntp = { version = "2.1.0", default-features = false }
rsntp = { version = "3.0.0", default-features = false }
```
## System clock assumptions
Expand Down

0 comments on commit 99e856a

Please sign in to comment.