Skip to content

Commit 6b6b6b9

Browse files
committed
chore: set version to 0.2.4
Signed-off-by: Timo Glastra <[email protected]>
1 parent 59b8999 commit 6b6b6b9

File tree

6 files changed

+10
-19
lines changed

6 files changed

+10
-19
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
push:
9-
branches: [main]
9+
branches: [v0.2.4]
1010
pull_request:
1111
branches: [main]
1212
workflow_dispatch:
@@ -55,9 +55,7 @@ jobs:
5555
run: pnpm test
5656

5757
continous-deployment:
58-
if: github.event_name == 'workflow_dispatch'
5958
runs-on: ubuntu-latest
60-
needs: ['continous-integration']
6159

6260
steps:
6361
- name: Checkout
@@ -93,7 +91,7 @@ jobs:
9391
if [ ${{ inputs.release-type }} == 'alpha' ]; then
9492
pnpm release --pre-dist-tag alpha prerelease --yes
9593
else
96-
pnpm release ${{ inputs.release-type }} --force-publish --no-private --yes
94+
pnpm release patch --force-publish --no-private --yes
9795
fi
9896
9997
version=$(node -p "require('./lerna.json').version")

lerna.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"npmClient": "pnpm",
55
"command": {
66
"version": {
77
"allowBranch": "main"
88
}
99
}
10-
}
10+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"scripts": {
1313
"style:check": "biome check --unsafe .",
1414
"style:fix": "pnpm style:check --write",
15-
"types:check": "pnpm -r check-types",
15+
"types:check": "pnpm -r types:check",
1616
"build": "pnpm -r build",
1717
"clean": "pnpm -r clean",
1818
"test": "node --import tsx --test packages/**/tests/*.test.ts",

packages/askar-nodejs/package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openwallet-foundation/askar-nodejs",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"license": "Apache-2.0",
55
"description": "Nodejs wrapper for Askar",
66
"main": "build/index",
@@ -15,11 +15,7 @@
1515
"publishConfig": {
1616
"access": "public"
1717
},
18-
"files": [
19-
"build",
20-
"scripts",
21-
"../../LICENSE"
22-
],
18+
"files": ["build", "scripts", "../../LICENSE"],
2319
"scripts": {
2420
"types:check": "pnpm compile --noEmit",
2521
"build": "pnpm clean && pnpm compile",

packages/askar-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openwallet-foundation/askar-react-native",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"license": "Apache-2.0",
55
"description": "React Native wrapper for Askar",
66
"main": "build/index",

packages/askar-shared/package.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openwallet-foundation/askar-shared",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"license": "Apache-2.0",
55
"description": "Shared library for using Askar with NodeJS and React Native",
66
"main": "build/index",
@@ -16,10 +16,7 @@
1616
"publishConfig": {
1717
"access": "public"
1818
},
19-
"files": [
20-
"build",
21-
"../../LICENSE"
22-
],
19+
"files": ["build", "../../LICENSE"],
2320
"scripts": {
2421
"types:check": "pnpm compile --noEmit",
2522
"build": "pnpm clean && pnpm compile",

0 commit comments

Comments
 (0)