Skip to content

Commit 25dc1e4

Browse files
authored
Merge pull request #3 from bahlo/add-changelog-bump-version
Add CHANGELOG.md, bump version
2 parents 4efd7fa + 57889d0 commit 25dc1e4

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "sonyflake"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Arne Bahlo <[email protected]>"]
5-
license = "MIT"
5+
license = "MIT OR Apache-2.0"
66
description = "A distributed unique ID generator inspired by Twitter's Snowflake"
77
repository = "https://github.com/bahlo/sonyflake-rs"
88
readme = "README.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a Rust implementation of the original [sony/sonyflake](https://github.co
1414
Add the following to your `Cargo.toml`:
1515
```toml
1616
[dependencies]
17-
sonyflake = "0.1.0"
17+
sonyflake = "0.1.1"
1818
```
1919

2020
## Quickstart

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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:
@@ -44,6 +44,7 @@
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

4849
mod builder;
4950
mod error;

0 commit comments

Comments
 (0)