From 4d6df32fd2efe06f1aea21368b951f6390cd03cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Go=C5=82awski?= Date: Sun, 6 Oct 2024 23:40:43 +0200 Subject: [PATCH] Release version v0.1.0 --- .cargo/README.md | 4 ++-- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.cargo/README.md b/.cargo/README.md index a802da8..ad8df04 100644 --- a/.cargo/README.md +++ b/.cargo/README.md @@ -4,7 +4,7 @@ [![Build](https://img.shields.io/github/actions/workflow/status/chksum-rs/writer/rust.yml?branch=master&style=flat-square&logo=github "Build")](https://github.com/chksum-rs/writer/actions/workflows/rust.yml) [![docs.rs](https://img.shields.io/docsrs/chksum-writer?style=flat-square&logo=docsdotrs "docs.rs")](https://docs.rs/chksum-writer/) [![MSRV](https://img.shields.io/badge/MSRV-1.70.0-informational?style=flat-square "MSRV")](https://github.com/chksum-rs/writer/blob/master/Cargo.toml) -[![deps.rs](https://deps.rs/crate/chksum-writer/0.0.0/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-writer/0.0.0) +[![deps.rs](https://deps.rs/crate/chksum-writer/0.1.0/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-writer/0.1.0) [![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square "unsafe forbidden")](https://github.com/rust-secure-code/safety-dance) [![LICENSE](https://img.shields.io/github/license/chksum-rs/writer?style=flat-square "LICENSE")](https://github.com/chksum-rs/writer/blob/master/LICENSE) @@ -16,7 +16,7 @@ To use this crate, add the following entry to your `Cargo.toml` file in the `dep ```toml [dependencies] -chksum-writer = "0.0.0" +chksum-writer = "0.1.0" ``` Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4053453..cbc31a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.1.0] - 2024-10-06 ### Added @@ -22,5 +22,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/chksum-rs/writer/compare/v0.0.0...HEAD +[0.1.0]: https://github.com/chksum-rs/writer/compare/v0.0.0...v0.1.0 [0.0.0]: https://github.com/chksum-rs/writer/releases/tag/v0.0.0 diff --git a/Cargo.toml b/Cargo.toml index 55bd926..a4cb5c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chksum-writer" -version = "0.0.0" +version = "0.1.0" authors = ["Konrad GoĊ‚awski "] edition = "2021" rust-version = "1.70.0" diff --git a/README.md b/README.md index 18125f4..1fc59a9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Build](https://img.shields.io/github/actions/workflow/status/chksum-rs/writer/rust.yml?branch=master&style=flat-square&logo=github "Build")](https://github.com/chksum-rs/writer/actions/workflows/rust.yml) [![docs.rs](https://img.shields.io/docsrs/chksum-writer?style=flat-square&logo=docsdotrs "docs.rs")](https://docs.rs/chksum-writer/) [![MSRV](https://img.shields.io/badge/MSRV-1.70.0-informational?style=flat-square "MSRV")](https://github.com/chksum-rs/writer/blob/master/Cargo.toml) -[![deps.rs](https://deps.rs/crate/chksum-writer/0.0.0/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-writer/0.0.0) +[![deps.rs](https://deps.rs/crate/chksum-writer/0.1.0/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-writer/0.1.0) [![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square "unsafe forbidden")](https://github.com/rust-secure-code/safety-dance) [![LICENSE](https://img.shields.io/github/license/chksum-rs/writer?style=flat-square "LICENSE")](https://github.com/chksum-rs/writer/blob/master/LICENSE) @@ -16,7 +16,7 @@ To use this crate, add the following entry to your `Cargo.toml` file in the `dep ```toml [dependencies] -chksum-writer = "0.0.0" +chksum-writer = "0.1.0" ``` Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand: diff --git a/src/lib.rs b/src/lib.rs index 5bfb01c..f14205e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ //! //! ```toml //! [dependencies] -//! chksum-writer = "0.0.0" +//! chksum-writer = "0.1.0" //! ``` //! //! Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand: