Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(js): update version to 0.2.3 #342

Merged
merged 4 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,25 +207,25 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.JS 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: "https://registry.npmjs.org/"

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9

- name: Fetch library artifacts
uses: actions/download-artifact@v3
with:
name: library-linux-x86_64

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Build JavaScript Wrapper
run: pnpm build
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.2.2",
"version": "0.2.3",
"npmClient": "pnpm",
"command": {
"version": {
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/packages/anoncreds-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/anoncreds-nodejs",
"version": "0.2.2",
"version": "0.2.3",
"license": "Apache-2.0",
"description": "Nodejs wrapper for Anoncreds",
"main": "build/index",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"types": ["node"]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "anoncreds-react-native-example",
"version": "1.0.0",
"version": "0.2.3",
"main": "./src/index.js",
"scripts": {
"start": "expo start",
Expand All @@ -11,10 +11,10 @@
"dependencies": {
"@hyperledger/anoncreds-react-native": "workspace:*",
"expo": "~49.0.10",
"expo-splash-screen": "~0.26.4",
"expo-status-bar": "~1.11.1",
"react": "18.2.0",
"react-native": "0.73.4",
"expo-splash-screen": "~0.26.4"
"react-native": "0.73.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/anoncreds-react-native",
"version": "0.2.2",
"version": "0.2.3",
"license": "Apache-2.0",
"description": "React Native wrapper for Anoncreds",
"main": "build/index",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./build",
"types": ["react-native"]
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/packages/anoncreds-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/anoncreds-shared",
"version": "0.2.2",
"version": "0.2.3",
"license": "Apache-2.0",
"description": "Anoncreds wrapper library with NodeJS and React Native",
"main": "build/index",
Expand Down
Loading
Loading