Skip to content

Commit b2bee6a

Browse files
committed
fix: release version 0.3.1 with ip-fallback feature
- Released version 0.3.1 with the `ip-fallback` feature including the `pnet_datalink` dependency.
1 parent 62eb625 commit b2bee6a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.1] - 2024-11-16
9+
10+
- Released version 0.3.1 with `ip-fallback` feature including `pnet_datalink` dependency.
11+
812
## [0.3.0] - 2024-10-10
913

1014
### Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snowflake_me"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["houseme <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "A distributed unique ID generator inspired by Twitter's Snowflake"
@@ -16,7 +16,7 @@ edition = "2021"
1616

1717
[features]
1818
default = []
19-
ip-fallback = ["pnet_datalink"]
19+
ip-fallback = ["dep:pnet_datalink"]
2020

2121
[dependencies]
2222
chrono = { version = "0.4", default-features = false, features = ["now"] }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add the following to your `Cargo.toml`:
2626

2727
```toml
2828
[dependencies]
29-
snowflake_me = "0.2"
29+
snowflake_me = "0.3"
3030
```
3131

3232
## Quickstart

0 commit comments

Comments
 (0)