-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add changelog and bump version (#6)
- Loading branch information
1 parent
25461a6
commit 475c8cf
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Changelog | ||
|
||
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.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [v0.1.2] - 2024-11-19 | ||
|
||
- Bit rotation the Rust way | ||
- README improvements | ||
- Added CI | ||
|
||
## [v0.1.1] - 2024-11-19 | ||
|
||
- Makefile changes | ||
- Linting and formatting | ||
- Fixed `creats.io` categories | ||
|
||
## [v0.1.0] - 2024-11-19 | ||
|
||
- Initial release | ||
- Added benchmarks | ||
- Released a crate | ||
|
||
[Unreleased]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.1.2...HEAD | ||
[v0.1.2]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.1.1...v0.1.2 | ||
[v0.1.1]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.1.0...v0.1.1 | ||
[v0.1.0]: https://github.com/thevilledev/ChibiHash-rs/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "chibihash" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = ["Ville Vesilehto <[email protected]>"] | ||
|