Skip to content

Commit

Permalink
fix: release version 0.3.1 with ip-fallback feature
Browse files Browse the repository at this point in the history
- Released version 0.3.1 with the `ip-fallback` feature including the `pnet_datalink` dependency.
  • Loading branch information
houseme committed Oct 16, 2024
1 parent 62eb625 commit b2bee6a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2024-11-16

- Released version 0.3.1 with `ip-fallback` feature including `pnet_datalink` dependency.

## [0.3.0] - 2024-10-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snowflake_me"
version = "0.3.0"
version = "0.3.1"
authors = ["houseme <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "A distributed unique ID generator inspired by Twitter's Snowflake"
Expand All @@ -16,7 +16,7 @@ edition = "2021"

[features]
default = []
ip-fallback = ["pnet_datalink"]
ip-fallback = ["dep:pnet_datalink"]

[dependencies]
chrono = { version = "0.4", default-features = false, features = ["now"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies]
snowflake_me = "0.2"
snowflake_me = "0.3"
```

## Quickstart
Expand Down

0 comments on commit b2bee6a

Please sign in to comment.