Skip to content

Commit

Permalink
Merge pull request #31 from dajiaji/bump-to-v0_5_0
Browse files Browse the repository at this point in the history
Bump up version to v0.5.0.
  • Loading branch information
dajiaji authored May 15, 2022
2 parents f666159 + b452bdc commit 1cb455c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 31 deletions.
15 changes: 14 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@

## Unreleased

## Version 0.4.0
## Version 0.5.0

Released 2022-05-15

- [(#30) Add support for deriveKeyPair.](https://github.com/dajiaji/hpke-js/pull/30)
- [(#30) [Breaking Change] Remove deriveKey.](https://github.com/dajiaji/hpke-js/pull/30)
- [(#29) Fix upper limit check for sequence number of encryption.](https://github.com/dajiaji/hpke-js/pull/29)
- [(#28) Improve test coverage.](https://github.com/dajiaji/hpke-js/pull/28)
- [(#25) Add SerializeError.](https://github.com/dajiaji/hpke-js/pull/25)
- [(#25) Enable lint test on github action.](https://github.com/dajiaji/hpke-js/pull/25)
- [(#25) Introduce KemPrimitives to make it easy to add KEM algorithms.](https://github.com/dajiaji/hpke-js/pull/25)
- [(#24) Introduce AeadKey interface to make it easy to add new AEAD algorithms.](https://github.com/dajiaji/hpke-js/pull/24)

## Version 0.4.1

Released 2022-05-12

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Using unpkg CDN:
<script src="https://unpkg.com/hpke-js/dist/hpke.min.js"></script>

<!-- use a specific version -->
<script src="https://unpkg.com/hpke-js@0.4.1/dist/hpke.min.js"></script>
<script src="https://unpkg.com/hpke-js@0.5.0/dist/hpke.min.js"></script>
```

Using jsDelivr CDN:
Expand All @@ -88,7 +88,7 @@ Using jsDelivr CDN:
<script src="https://cdn.jsdelivr.net/npm/hpke-js/dist/hpke.min.js"></script>

<!-- use a specific version -->
<script src="https://cdn.jsdelivr.net/npm/hpke-js@0.4.1/dist/hpke.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hpke-js@0.5.0/dist/hpke.min.js"></script>
```

## Usage
Expand Down
31 changes: 4 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hpke-js",
"version": "0.4.1",
"version": "0.5.0",
"description": "A Hybrid Public Key Encryption (HPKE) library",
"repository": {
"type": "git",
Expand Down

0 comments on commit 1cb455c

Please sign in to comment.