Skip to content

Commit

Permalink
Merge pull request #10 from carbonteq/changeset-release/main
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
volf52 authored Aug 1, 2024
2 parents 756f300 + 4b1ee13 commit 4568fb0
Show file tree
Hide file tree
Showing 9 changed files with 143 additions and 97 deletions.
5 changes: 0 additions & 5 deletions .changeset/honest-chairs-sleep.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-eels-decide.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @carbonteq/jwt

## 0.5.0

### Minor Changes

- 7f920ca: Heavy rewrite

### Patch Changes

- eb0393a: Add linux musl support

## 0.4.0

### Minor Changes
Expand Down
37 changes: 21 additions & 16 deletions npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{
"name": "@carbonteq/jwt-darwin-arm64",
"version": "0.4.0",
"os": ["darwin"],
"cpu": ["arm64"],
"main": "jwt.darwin-arm64.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": ["jwt.darwin-arm64.node"],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}

"name": "@carbonteq/jwt-darwin-arm64",
"version": "0.5.0",
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"main": "jwt.darwin-arm64.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.darwin-arm64.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}
37 changes: 21 additions & 16 deletions npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{
"name": "@carbonteq/jwt-darwin-x64",
"version": "0.4.0",
"os": ["darwin"],
"cpu": ["x64"],
"main": "jwt.darwin-x64.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": ["jwt.darwin-x64.node"],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}

"name": "@carbonteq/jwt-darwin-x64",
"version": "0.5.0",
"os": [
"darwin"
],
"cpu": [
"x64"
],
"main": "jwt.darwin-x64.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.darwin-x64.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}
41 changes: 24 additions & 17 deletions npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
{
"name": "@carbonteq/jwt-linux-x64-gnu",
"version": "0.4.0",
"os": ["linux"],
"cpu": ["x64"],
"main": "jwt.linux-x64-gnu.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": ["jwt.linux-x64-gnu.node"],
"license": "MIT",
"engines": {
"node": ">= 16"
},
"libc": ["glibc"]
}

"name": "@carbonteq/jwt-linux-x64-gnu",
"version": "0.5.0",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "jwt.linux-x64-gnu.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.linux-x64-gnu.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
},
"libc": [
"glibc"
]
}
41 changes: 24 additions & 17 deletions npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
{
"name": "@carbonteq/jwt-linux-x64-musl",
"version": "0.4.0",
"os": ["linux"],
"cpu": ["x64"],
"main": "jwt.linux-x64-musl.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": ["jwt.linux-x64-musl.node"],
"license": "MIT",
"engines": {
"node": ">= 16"
},
"libc": ["musl"]
}

"name": "@carbonteq/jwt-linux-x64-musl",
"version": "0.5.0",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "jwt.linux-x64-musl.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.linux-x64-musl.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
},
"libc": [
"musl"
]
}
37 changes: 21 additions & 16 deletions npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{
"name": "@carbonteq/jwt-win32-x64-msvc",
"version": "0.4.0",
"os": ["win32"],
"cpu": ["x64"],
"main": "jwt.win32-x64-msvc.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": ["jwt.win32-x64-msvc.node"],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}

"name": "@carbonteq/jwt-win32-x64-msvc",
"version": "0.5.0",
"os": [
"win32"
],
"cpu": [
"x64"
],
"main": "jwt.win32-x64-msvc.node",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"jwt.win32-x64-msvc.node"
],
"license": "MIT",
"engines": {
"node": ">= 16"
}
}
27 changes: 22 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbonteq/jwt",
"version": "0.4.0",
"version": "0.5.0",
"main": "index.js",
"types": "index.d.ts",
"scope": "@carbonteq",
Expand All @@ -9,7 +9,14 @@
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"keywords": ["jwt", "jsonwebtoken", "napi", "napi-rs", "carbonteq", "N-API"],
"keywords": [
"jwt",
"jsonwebtoken",
"napi",
"napi-rs",
"carbonteq",
"N-API"
],
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
Expand All @@ -33,7 +40,10 @@
"napi": {
"name": "jwt",
"triples": {
"additional": ["aarch64-apple-darwin", "x86_64-unknown-linux-musl"]
"additional": [
"aarch64-apple-darwin",
"x86_64-unknown-linux-musl"
]
}
},
"license": "MIT",
Expand All @@ -58,8 +68,15 @@
"ava": {
"timeout": "3m",
"failFast": false,
"require": ["esbuild-runner/register.js"],
"extensions": ["cjs", "mjs", "js", "ts"]
"require": [
"esbuild-runner/register.js"
],
"extensions": [
"cjs",
"mjs",
"js",
"ts"
]
},
"engines": {
"node": ">= 16"
Expand Down

0 comments on commit 4568fb0

Please sign in to comment.