Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
Minor version release
  • Loading branch information
mberry committed Jan 18, 2023
2 parents d3d9903 + b3e66de commit d37a199
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release and Changelog

on:
push:
tags:
- "*"
branches:
- master

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body_path: CHANGELOG.txt
draft: false
prerelease: false
17 changes: 17 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## 0.4.0 - 2023-1-18

### Added
- Hazmat feature flag to expose Kyber primitives
- NASM assembly code for better portability
- CI runners for macOS and Windows
- CI runners on tier 2 targets
- Big endian testing
- Error implementation

### Changed
- Bumped dependencies
- Zeroise feature to Zeroize, no more British English in features

### Fixed
- Documentation
- Various CI issues
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pqc_kyber"
version = "0.3.0"
version = "0.4.0"
authors = ["Mitchell Berry <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A rust implementation of the Kyber algorithm, a KEM standardised by the NIST Pos
This library:
* Is no_std compatible and needs no allocator, suitable for embedded devices.
* Reference files contain no unsafe code and are written in pure rust.
* On x86_64 platforms uses an avx2 optimized version by default, which includes some assembly code taken from the C repo.
* On x86_64 platforms offers an avx2 optimized version, which includes assembly from the C reference repo.
* Compiles to WASM using wasm-bindgen and has a ready-to-use binary published on NPM.


Expand Down

0 comments on commit d37a199

Please sign in to comment.