Skip to content

Commit

Permalink
Merge pull request #23 from contain-rs/v0.1.0
Browse files Browse the repository at this point in the history
Release v0.1.0
  • Loading branch information
pczarn authored Dec 2, 2024
2 parents 49f40d2 + 30c393e commit f07b249
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "linked-list"
version = "0.0.3"
version = "0.1.0"
license = "MIT OR Apache-2.0"
description = "An alternative implementation of std::collections::LinkedList"

Expand Down
23 changes: 17 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@

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

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

```toml
[dependencies]
linked-list = "0.0.3"
linked-list = "0.1"
```

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

```toml
[dependencies]
linked-list = { version = "0.0.3", features = ["serde"] }
linked-list = { version = "0.1", features = ["serde"] }
```

If you want [borsh-rs](https://github.com/near/borsh-rs) support, include it like this:

```toml
[dependencies]
linked-list = { version = "0.1", features = ["borsh"] }
```

Other available serialization libraries can be enabled with the
[`miniserde`](https://github.com/dtolnay/miniserde) and
[`nanoserde`](https://github.com/not-fl3/nanoserde) features.

<!-- cargo-rdme start -->

### Description
Expand Down
9 changes: 9 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Version 0.1.0 (2024-12-02)
==========================

<a id="v0.1.0"></a>

- `allocator-api2` support is implemented
- serialization / deserialization is implemented
- `no_std` support is implemented
- MSRV is bumped to ver1.67.0

0 comments on commit f07b249

Please sign in to comment.