Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.15.0 #120

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "either"
version = "1.14.0"
version = "1.15.0"
authors = ["bluss"]
edition = "2021"
rust-version = "1.63.0"
Expand Down Expand Up @@ -29,7 +29,8 @@ use_std = ["std"] # deprecated alias
serde_json = "1.0.0"

[package.metadata.release]
no-dev-version = true
allow-branch = ["main"]
sign-tag = true
tag-name = "{{version}}"

[package.metadata.docs.rs]
Expand Down
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ How to use with cargo::
Recent Changes
--------------

- 1.15.0

- Fix ``serde`` support when building without ``std``, by @klkvr (#119)

- Use a more common ``std`` feature for default enablement, deprecating
the ``use_std`` feature as a mere alias of the new name.

- 1.14.0

- **MSRV**: ``either`` now requires Rust 1.63 or later.
Expand Down