Skip to content

Commit 8ea96c7

Browse files
authored
Merge pull request #19 from myelin-ai/metadata
Update Metadata
2 parents 3b9f58d + 95b7c2f commit 8ea96c7

File tree

3 files changed

+29
-20
lines changed

3 files changed

+29
-20
lines changed

.mailmap

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
2-
1+
2+
3+
Tau Gärtli <[email protected]>

Cargo.toml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
[package]
22
name = "unordered-pair"
33
description = "A tuple struct representing an unordered pair"
4-
version = "0.2.4"
4+
version = "0.2.5"
55
authors = [
66
"Jeremy Stucki <[email protected]>",
7-
7+
"Tau Gärtli <[email protected]>",
88
]
9-
license = "MIT/Apache-2.0"
9+
license = "MIT OR Apache-2.0"
1010
readme = "readme.md"
1111
repository = "https://github.com/myelin-ai/unordered-pair"
12-
homepage = "https://github.com/myelin-ai/unordered-pair"
1312
documentation = "https://docs.rs/unordered-pair"
1413
edition = "2021"
14+
categories = ["data-structures"]
15+
keywords = ["tuple", "pair", "unordered"]
16+
exclude = [".github/", ".mailmap", ".gitignore"]
1517

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

21+
[badges.maintenance]
22+
status = "passively-maintained"
23+
1924
[package.metadata.docs.rs]
2025
all-features = true

changelog.md

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
# Changelog
22

3-
## 0.1.0
4-
- Initial release
3+
## 0.2.5
4+
* Updated crate metadata and declare maintenance status.
55

6-
## 0.1.1
7-
- Update readme
6+
## 0.2.4
7+
- Add `into_ordered_tuple`.
8+
- Derive `Default`.
9+
- 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).
810

9-
## 0.2.0
10-
- Derive Eq
11+
## 0.2.3
12+
- Add support for Serialization/Deserialization using serde.
13+
14+
## 0.2.2
15+
- Derive Copy
1116

1217
## 0.2.1
1318
- Stable rust support
1419

15-
## 0.2.2
16-
- Derive Copy
20+
## 0.2.0
21+
- Derive Eq
1722

18-
## 0.2.3
19-
- Add support for Serialization/Deserialization using serde.
23+
## 0.1.1
24+
- Update readme
2025

21-
## 0.2.4
22-
- Add `into_ordered_tuple`.
23-
- Derive `Default`.
24-
- 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).
26+
## 0.1.0
27+
Initial release

0 commit comments

Comments
 (0)