Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Oct 2, 2023
1 parent 01dac68 commit 2fa45b3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## Version 1.0.1 -- 2023-10-02

* Post NIST PQC submission clean up.
* Reduce memory consumption when processing signatures.
* Implement more bit-sliced algorithms.
* Replace manual copies with `memcpy`.

## Version 1.0.0 -- 2023-06-02

* Initial release.
* Version submitted to the NIST PQC project.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('faest-ref', ['c', 'cpp'],
version: '0.0.0',
version: '1.0.1',
meson_version: '>=0.57',
default_options: [
'c_std=c11',
Expand Down Expand Up @@ -556,7 +556,7 @@ libfaest = shared_library('faest',
include_directories: include_directories,
c_args: defines + c_flags + visibility_define,
install: true,
version: '0.0.0',
version: '0.0.1',
gnu_symbol_visibility: 'hidden'
)
libfaest_dependency = declare_dependency(
Expand Down

0 comments on commit 2fa45b3

Please sign in to comment.