-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 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,16 @@ | ||
2.0.0 | ||
===== | ||
|
||
* Update to reed-solomon-32 version 2.0.0. Significantly, that version pre-computes | ||
values that used to be computed at runtime. This allows us to simplify our | ||
API to primary just use free-functions that use those pre-computed tables as opposed | ||
to having to manually manage objects that contain runtime-computed values. | ||
* Some users may wish to keep binary size to a minimum (eg, such as for WASM output). | ||
In order to minimize binary size, we create a lower-level interface that allows | ||
for a particular ECC size to be chosen at compile time. When using this interface, | ||
unneeded precomputed tables may be eliminated from the final binary at link time. | ||
* Update to libzbase 2.0.0 - this doesn't impact the features of this library. | ||
* Update the Error APIs to make it easier to differentiate between input related | ||
errors and usage related errors. | ||
* Fix incorrect use statements that were preventing the no_std mode from actually | ||
working. |
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 = "libhumancode" | ||
version = "1.0.0" | ||
version = "2.0.0" | ||
edition = "2018" | ||
authors = ["Palmer Cox <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|