Skip to content

Commit

Permalink
Release version v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ventaquil committed Apr 28, 2024
1 parent 628d748 commit 61f8f77
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .cargo/README.md
Expand Up @@ -4,7 +4,7 @@
[![Build](https://img.shields.io/github/actions/workflow/status/chksum-rs/hash-sha2-384/rust.yml?branch=master&style=flat-square&logo=github "Build")](https://github.com/chksum-rs/hash-sha2-384/actions/workflows/rust.yml)
[![docs.rs](https://img.shields.io/docsrs/chksum-hash-sha2-384?style=flat-square&logo=docsdotrs "docs.rs")](https://docs.rs/chksum-hash-sha2-384/)
[![MSRV](https://img.shields.io/badge/MSRV-1.63.0-informational?style=flat-square "MSRV")](https://github.com/chksum-rs/hash-sha2-384/blob/master/Cargo.toml)
[![deps.rs](https://deps.rs/crate/chksum-hash-sha2-384/0.0.0/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-hash-sha2-384/0.0.0)
[![deps.rs](https://deps.rs/crate/chksum-hash-sha2-384/0.0.1/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-hash-sha2-384/0.0.1)
[![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/hash-sha2-384?style=flat-square "LICENSE")](https://github.com/chksum-rs/hash-sha2-384/blob/master/LICENSE)

Expand All @@ -16,7 +16,7 @@ To use this crate, add the following entry to your `Cargo.toml` file in the `dep

```toml
[dependencies]
chksum-hash-sha2-384 = "0.0.0"
chksum-hash-sha2-384 = "0.0.1"
```

Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand:
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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.0.1] - 2024-04-28

### Added

Expand All @@ -25,5 +25,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[Unreleased]: https://github.com/chksum-rs/hash-sha2-384/compare/v0.0.0...HEAD
[0.0.1]: https://github.com/chksum-rs/hash-sha2-384/compare/v0.0.0...v0.0.1
[0.0.0]: https://github.com/chksum-rs/hash-sha2-384/releases/tag/v0.0.0
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -6,7 +6,7 @@ members = [

[package]
name = "chksum-hash-sha2-384"
version = "0.0.0"
version = "0.0.1"
authors = ["Konrad Goławski <konrad@golawski.it>"]
edition = "2021"
rust-version = "1.63.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -4,7 +4,7 @@
[![Build](https://img.shields.io/github/actions/workflow/status/chksum-rs/hash-sha2-384/rust.yml?branch=master&style=flat-square&logo=github "Build")](https://github.com/chksum-rs/hash-sha2-384/actions/workflows/rust.yml)
[![docs.rs](https://img.shields.io/docsrs/chksum-hash-sha2-384?style=flat-square&logo=docsdotrs "docs.rs")](https://docs.rs/chksum-hash-sha2-384/)
[![MSRV](https://img.shields.io/badge/MSRV-1.63.0-informational?style=flat-square "MSRV")](https://github.com/chksum-rs/hash-sha2-384/blob/master/Cargo.toml)
[![deps.rs](https://deps.rs/crate/chksum-hash-sha2-384/0.0.0/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-hash-sha2-384/0.0.0)
[![deps.rs](https://deps.rs/crate/chksum-hash-sha2-384/0.0.1/status.svg?style=flat-square "deps.rs")](https://deps.rs/crate/chksum-hash-sha2-384/0.0.1)
[![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/hash-sha2-384?style=flat-square "LICENSE")](https://github.com/chksum-rs/hash-sha2-384/blob/master/LICENSE)

Expand All @@ -16,7 +16,7 @@ To use this crate, add the following entry to your `Cargo.toml` file in the `dep

```toml
[dependencies]
chksum-hash-sha2-384 = "0.0.0"
chksum-hash-sha2-384 = "0.0.1"
```

Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand:
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "chksum-hash-sha2-384-fuzz"
version = "0.0.0"
version = "0.0.1"
publish = false
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -6,7 +6,7 @@
//!
//! ```toml
//! [dependencies]
//! chksum-hash-sha2-384 = "0.0.0"
//! chksum-hash-sha2-384 = "0.0.1"
//! ```
//!
//! Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand:
Expand Down

0 comments on commit 61f8f77

Please sign in to comment.