Skip to content

Commit fe5e763

Browse files
authored
chore(js): update version to 0.2.3 (#342)
* chore(js): update version to 0.2.3 Signed-off-by: Timo Glastra <[email protected]>
1 parent 44a22ed commit fe5e763

File tree

9 files changed

+7466
-5389
lines changed

9 files changed

+7466
-5389
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,25 +207,25 @@ jobs:
207207

208208
steps:
209209
- name: Checkout
210-
uses: actions/checkout@v3
210+
uses: actions/checkout@v4
211211

212212
- name: Set up Node.JS 18.x
213-
uses: actions/setup-node@v3
213+
uses: actions/setup-node@v4
214214
with:
215215
node-version: 18.x
216216
registry-url: "https://registry.npmjs.org/"
217217

218-
- uses: pnpm/action-setup@v2
218+
- uses: pnpm/action-setup@v4
219219
with:
220-
version: 8
220+
version: 9
221221

222222
- name: Fetch library artifacts
223223
uses: actions/download-artifact@v3
224224
with:
225225
name: library-linux-x86_64
226226

227227
- name: Install dependencies
228-
run: pnpm install
228+
run: pnpm install --frozen-lockfile
229229

230230
- name: Build JavaScript Wrapper
231231
run: pnpm build

wrappers/javascript/lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"npmClient": "pnpm",
55
"command": {
66
"version": {

wrappers/javascript/packages/anoncreds-nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/anoncreds-nodejs",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"license": "Apache-2.0",
55
"description": "Nodejs wrapper for Anoncreds",
66
"main": "build/index",

wrappers/javascript/packages/anoncreds-nodejs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.json",
2+
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"types": ["node"]
55
}

wrappers/javascript/packages/anoncreds-react-native-example/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anoncreds-react-native-example",
3-
"version": "1.0.0",
3+
"version": "0.2.3",
44
"main": "./src/index.js",
55
"scripts": {
66
"start": "expo start",
@@ -11,10 +11,10 @@
1111
"dependencies": {
1212
"@hyperledger/anoncreds-react-native": "workspace:*",
1313
"expo": "~49.0.10",
14+
"expo-splash-screen": "~0.26.4",
1415
"expo-status-bar": "~1.11.1",
1516
"react": "18.2.0",
16-
"react-native": "0.73.4",
17-
"expo-splash-screen": "~0.26.4"
17+
"react-native": "0.73.4"
1818
},
1919
"devDependencies": {
2020
"@babel/core": "^7.20.0",

wrappers/javascript/packages/anoncreds-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": "@hyperledger/anoncreds-react-native",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"license": "Apache-2.0",
55
"description": "React Native wrapper for Anoncreds",
66
"main": "build/index",

wrappers/javascript/packages/anoncreds-react-native/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.json",
2+
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./build",
55
"types": ["react-native"]

wrappers/javascript/packages/anoncreds-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/anoncreds-shared",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"license": "Apache-2.0",
55
"description": "Anoncreds wrapper library with NodeJS and React Native",
66
"main": "build/index",

0 commit comments

Comments
 (0)