Skip to content

Commit f07b249

Browse files
authored
Merge pull request #23 from contain-rs/v0.1.0
Release v0.1.0
2 parents 49f40d2 + 30c393e commit f07b249

File tree

3 files changed

+27
-7
lines changed

3 files changed

+27
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "linked-list"
4-
version = "0.0.3"
4+
version = "0.1.0"
55
license = "MIT OR Apache-2.0"
66
description = "An alternative implementation of std::collections::LinkedList"
77

README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919

2020
[crates.io shield]: https://img.shields.io/crates/v/linked-list?label=latest
2121
[crates.io link]: https://crates.io/crates/linked-list
22-
[docs.rs badge]: https://docs.rs/linked-list/badge.svg?version=0.0.3
23-
[docs.rs link]: https://docs.rs/linked-list/0.0.3/linked_list/
22+
[docs.rs badge]: https://docs.rs/linked-list/badge.svg?version=0.1.0
23+
[docs.rs link]: https://docs.rs/linked-list/0.1.0/linked_list/
2424
[github ci badge]: https://github.com/contain-rs/linked-list/workflows/Rust/badge.svg?branch=master
2525
[rustc 1.67+]: https://img.shields.io/badge/rustc-1.67%2B-blue.svg
26-
[deps.rs status]: https://deps.rs/crate/linked-list/0.0.3/status.svg
27-
[deps.rs link]: https://deps.rs/crate/linked-list/0.0.3
26+
[deps.rs status]: https://deps.rs/crate/linked-list/0.1.0/status.svg
27+
[deps.rs link]: https://deps.rs/crate/linked-list/0.1.0
2828
[shields.io download count]: https://img.shields.io/crates/d/linked-list.svg
2929

3030
## Usage
@@ -33,7 +33,7 @@ Add this to your Cargo.toml:
3333

3434
```toml
3535
[dependencies]
36-
linked-list = "0.0.3"
36+
linked-list = "0.1"
3737
```
3838

3939
Since Rust 2018, `extern crate` is no longer mandatory. If your edition is old (Rust 2015),
@@ -47,9 +47,20 @@ If you want [serde](https://github.com/serde-rs/serde) support, include the feat
4747

4848
```toml
4949
[dependencies]
50-
linked-list = { version = "0.0.3", features = ["serde"] }
50+
linked-list = { version = "0.1", features = ["serde"] }
5151
```
5252

53+
If you want [borsh-rs](https://github.com/near/borsh-rs) support, include it like this:
54+
55+
```toml
56+
[dependencies]
57+
linked-list = { version = "0.1", features = ["borsh"] }
58+
```
59+
60+
Other available serialization libraries can be enabled with the
61+
[`miniserde`](https://github.com/dtolnay/miniserde) and
62+
[`nanoserde`](https://github.com/not-fl3/nanoserde) features.
63+
5364
<!-- cargo-rdme start -->
5465

5566
### Description

RELEASES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Version 0.1.0 (2024-12-02)
2+
==========================
3+
4+
<a id="v0.1.0"></a>
5+
6+
- `allocator-api2` support is implemented
7+
- serialization / deserialization is implemented
8+
- `no_std` support is implemented
9+
- MSRV is bumped to ver1.67.0

0 commit comments

Comments
 (0)