File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+ All notable changes to this project will be documented in this file.
3+
4+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6+
7+ ## [ Unreleased]
8+
9+ ## [ 0.1.1] - 2020-12-29
10+ ### Fixed
11+ * ` Error ` is now ` Send ` + ` Sync `
12+
13+ ## [ 0.1.0] - 2020-12-29
14+ This is the initial version.
15+
16+ [ 0.1.1 ] : https://github.com/bahlo/sonyflake-rs/compare/v0.1.0...v0.1.1
17+ [ 0.1.0 ] : https://github.com/bahlo/sonyflake-rs/releases/tag/v0.1.0
18+
Original file line number Diff line number Diff line change 11[package ]
22name = " sonyflake"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44authors = [
" Arne Bahlo <[email protected] >" ]
5- license = " MIT"
5+ license = " MIT OR Apache-2.0 "
66description = " A distributed unique ID generator inspired by Twitter's Snowflake"
77repository = " https://github.com/bahlo/sonyflake-rs"
88readme = " README.md"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ This is a Rust implementation of the original [sony/sonyflake](https://github.co
1414Add the following to your ` Cargo.toml ` :
1515``` toml
1616[dependencies ]
17- sonyflake = " 0.1.0 "
17+ sonyflake = " 0.1.1 "
1818```
1919
2020## Quickstart
Original file line number Diff line number Diff line change 77//! Add the following to your `Cargo.toml`:
88//! ```toml
99//! [dependencies]
10- //! sonyflake = "0.1.0 "
10+ //! sonyflake = "0.1.1 "
1111//! ```
1212//!
1313//! Use the library like this:
4444//!
4545//! [sony/sonyflake]: https://github.com/sony/sonyflake
4646//! [Twitter's Snowflake]: https://blog.twitter.com/2010/announcing-snowflake
47+ #![ doc( html_root_url = "https://docs.rs/sonyflake/*" ) ]
4748
4849mod builder;
4950mod error;
You can’t perform that action at this time.
0 commit comments