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 v0.1.0 #23

Merged
merged 1 commit into from
Dec 2, 2024
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
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