feat: bump version to 0.4.0
This commit is contained in:
parent
05048711a3
commit
debd7805d0
3 changed files with 19 additions and 9 deletions
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -1,22 +1,32 @@
|
|||
# Changelog
|
||||
|
||||
# 0.4.0
|
||||
|
||||
## Changed
|
||||
|
||||
Rename crate from `pow_sha256` to `mcaptcha_pow_sha256`
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Changed
|
||||
- performance improvement: internally `get_difficulty` was being called
|
||||
multiple times while generating `PoW`, now it calls only once.
|
||||
|
||||
- performance improvement: internally `get_difficulty` was being called
|
||||
multiple times while generating `PoW`, now it calls only once.
|
||||
|
||||
### Fixed
|
||||
- encoding and decoding configuration used internally was causing an
|
||||
error in `PoW` computation
|
||||
|
||||
- encoding and decoding configuration used internally was causing an
|
||||
error in `PoW` computation
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Changed
|
||||
- Difficulty factor is now an unsigned 32 bit number
|
||||
|
||||
- Difficulty factor is now an unsigned 32 bit number
|
||||
|
||||
## 0.1
|
||||
|
||||
### Added:
|
||||
- PoW constructor
|
||||
- unique salt
|
||||
|
||||
- PoW constructor
|
||||
- unique salt
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -157,7 +157,7 @@ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
|
|||
|
||||
[[package]]
|
||||
name = "mcaptcha_pow_sha256"
|
||||
version = "0.3.1"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"bincode",
|
||||
"derive_builder",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mcaptcha_pow_sha256"
|
||||
version = "0.3.1"
|
||||
version = "0.4.0"
|
||||
authors = [ "Aravinth Manivannan <realaravinth@bastsense.net>", "Robert Kornacki <robk@syre.io>"]
|
||||
description = """
|
||||
SHA256 PoW on any serializable datatype used in mCaptcha
|
||||
|
|
Loading…
Reference in a new issue