Skip to content

Commit

Permalink
chore: release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed May 9, 2024
1 parent 8356294 commit b10697f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


## [1.2.0](https://github.com/brc-dd/iron-webcrypto/compare/v1.1.1...v1.2.0) (2024-05-09)


### Bug Fixes

* broken aes-128-ctr mode ([8356294](https://github.com/brc-dd/iron-webcrypto/commit/83562949acf36f80266af995fe151ca23db90254))

## [1.1.1](https://github.com/brc-dd/iron-webcrypto/compare/v1.1.0...v1.1.1) (2024-04-20)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue?style=flat-square)](https://www.jsdocs.io/package/iron-webcrypto)
[![downloads](https://img.shields.io/npm/dm/iron-webcrypto?style=flat-square)](https://www.npmjs.com/package/iron-webcrypto)
[![npm](https://img.shields.io/npm/v/iron-webcrypto?style=flat-square)](https://www.npmjs.com/package/iron-webcrypto)
[![deno](https://img.shields.io/badge/deno-iron@v1.1.1-blue.svg?style=flat-square)](https://deno.land/x/iron@v1.1.1/mod.ts)
[![jsr](https://img.shields.io/badge/jsr-@brc--dd/iron@v1.1.1-blue.svg?style=flat-square)](https://jsr.io/@brc-dd/iron)
[![deno](https://img.shields.io/badge/deno-iron@v1.2.0-blue.svg?style=flat-square)](https://deno.land/x/iron@v1.2.0/mod.ts)
[![jsr](https://img.shields.io/badge/jsr-@brc--dd/iron@v1.2.0-blue.svg?style=flat-square)](https://jsr.io/@brc-dd/iron)

This module is a replacement for `@hapi/iron`, written using standard APIs like
Web Crypto and Uint8Array, which make this compatible with a variety of runtimes
Expand Down Expand Up @@ -55,9 +55,9 @@ import * as Iron from '@brc-dd/iron'
On Deno, you can also use any of the following imports:

```ts
import * as Iron from 'https://deno.land/x/iron@v1.1.1/mod.ts'
import * as Iron from 'https://esm.sh/iron-webcrypto@1.1.1'
import * as Iron from 'npm:iron-webcrypto@1.1.1'
import * as Iron from 'https://deno.land/x/iron@v1.2.0/mod.ts'
import * as Iron from 'https://esm.sh/iron-webcrypto@1.2.0'
import * as Iron from 'npm:iron-webcrypto@1.2.0'
```

Don't use this module directly in the browser. While it will work, it's not
Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@brc-dd/iron",
"version": "1.1.1",
"version": "1.2.0",
"exports": "./src/index.ts",
"publish": { "include": ["LICENSE.md", "README.md", "src/**/*.ts", "jsr.json"] }
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "iron-webcrypto",
"version": "1.1.1",
"version": "1.2.0",
"description": "a cryptographic utility for sealing-unsealing a JSON object using symmetric key encryption with message integrity verification",
"keywords": [
"authentication",
Expand Down

0 comments on commit b10697f

Please sign in to comment.