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
|
# Changelog
|
||||||
|
|
||||||
|
# 0.4.0
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
|
||||||
|
Rename crate from `pow_sha256` to `mcaptcha_pow_sha256`
|
||||||
|
|
||||||
## 0.2.1
|
## 0.2.1
|
||||||
|
|
||||||
### Changed
|
### 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
|
### 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
|
## 0.2.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Difficulty factor is now an unsigned 32 bit number
|
|
||||||
|
- Difficulty factor is now an unsigned 32 bit number
|
||||||
|
|
||||||
## 0.1
|
## 0.1
|
||||||
|
|
||||||
### Added:
|
### Added:
|
||||||
- PoW constructor
|
|
||||||
- unique salt
|
- PoW constructor
|
||||||
|
- unique salt
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -157,7 +157,7 @@ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mcaptcha_pow_sha256"
|
name = "mcaptcha_pow_sha256"
|
||||||
version = "0.3.1"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bincode",
|
"bincode",
|
||||||
"derive_builder",
|
"derive_builder",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mcaptcha_pow_sha256"
|
name = "mcaptcha_pow_sha256"
|
||||||
version = "0.3.1"
|
version = "0.4.0"
|
||||||
authors = [ "Aravinth Manivannan <realaravinth@bastsense.net>", "Robert Kornacki <robk@syre.io>"]
|
authors = [ "Aravinth Manivannan <realaravinth@bastsense.net>", "Robert Kornacki <robk@syre.io>"]
|
||||||
description = """
|
description = """
|
||||||
SHA256 PoW on any serializable datatype used in mCaptcha
|
SHA256 PoW on any serializable datatype used in mCaptcha
|
||||||
|
|
Loading…
Reference in a new issue