Skip to content

Commit

Permalink
Merge pull request #19 from myelin-ai/metadata
Browse files Browse the repository at this point in the history
Update Metadata
  • Loading branch information
bash authored May 31, 2024
2 parents 3b9f58d + 95b7c2f commit 8ea96c7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 20 deletions.
5 changes: 3 additions & 2 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Tau <[email protected]> <[email protected]>
Tau <[email protected]><[email protected]>
Tau Gärtli <[email protected]> <[email protected]>
Tau Gärtli <[email protected]> <[email protected]>
Tau Gärtli <[email protected]>
13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
[package]
name = "unordered-pair"
description = "A tuple struct representing an unordered pair"
version = "0.2.4"
version = "0.2.5"
authors = [
"Jeremy Stucki <[email protected]>",
"Tau <[email protected]>",
"Tau Gärtli <[email protected]>",
]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
readme = "readme.md"
repository = "https://github.com/myelin-ai/unordered-pair"
homepage = "https://github.com/myelin-ai/unordered-pair"
documentation = "https://docs.rs/unordered-pair"
edition = "2021"
categories = ["data-structures"]
keywords = ["tuple", "pair", "unordered"]
exclude = [".github/", ".mailmap", ".gitignore"]

[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }

[badges.maintenance]
status = "passively-maintained"

[package.metadata.docs.rs]
all-features = true
31 changes: 17 additions & 14 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
# Changelog

## 0.1.0
- Initial release
## 0.2.5
* Updated crate metadata and declare maintenance status.

## 0.1.1
- Update readme
## 0.2.4
- Add `into_ordered_tuple`.
- Derive `Default`.
- Implement `From<UnorderedPair<T>>` instead of `Into<UnorderedPair>`. The `Into` impl now comes from the [blanket impl](https://doc.rust-lang.org/src/core/convert/mod.rs.html#541-552).

## 0.2.0
- Derive Eq
## 0.2.3
- Add support for Serialization/Deserialization using serde.

## 0.2.2
- Derive Copy

## 0.2.1
- Stable rust support

## 0.2.2
- Derive Copy
## 0.2.0
- Derive Eq

## 0.2.3
- Add support for Serialization/Deserialization using serde.
## 0.1.1
- Update readme

## 0.2.4
- Add `into_ordered_tuple`.
- Derive `Default`.
- Implement `From<UnorderedPair<T>>` instead of `Into<UnorderedPair>`. The `Into` impl now comes from the [blanket impl](https://doc.rust-lang.org/src/core/convert/mod.rs.html#541-552).
## 0.1.0
Initial release

0 comments on commit 8ea96c7

Please sign in to comment.