Skip to content

Commit 3757049

Browse files
chore(release): v2.0.0 (#41)
Co-authored-by: Xavier Redondo <xavier.redondo@axa.com>
1 parent ce8c600 commit 3757049

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
]
1111
}
1212
},
13-
"version": "2.0.0-alpha.1"
13+
"version": "2.0.0"
1414
}

packages/bautajs-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@axa/bautajs-core",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "Bauta.js is an add-on for your Node.js applications such as Express.js or Fastify.",
55
"main": "dist",
66
"types": "dist",

packages/bautajs-datasource-rest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@axa/bautajs-datasource-rest",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "A bautaJS datasource rest provider",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -26,7 +26,7 @@
2626
],
2727
"license": "SEE LICENSE IN LICENSE.txt",
2828
"dependencies": {
29-
"@axa/bautajs-core": "^2.0.0-alpha.1",
29+
"@axa/bautajs-core": "^2.0.0",
3030
"@axa/native-proxy-agent": "^1.0.0",
3131
"@sindresorhus/is": "^4.6.0",
3232
"got": "^11.8.5"

packages/bautajs-decorator-cache/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@axa/bautajs-decorator-cache",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "A bautaJS cache decorator",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -25,7 +25,7 @@
2525
],
2626
"license": "SEE LICENSE IN LICENSE.txt",
2727
"dependencies": {
28-
"@axa/bautajs-core": "^2.0.0-alpha.1",
28+
"@axa/bautajs-core": "^2.0.0",
2929
"node-object-hash": "^2.3.10",
3030
"quick-lru-cjs": "^5.2.1"
3131
}

packages/bautajs-express-example/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@axa/bautajs-example",
3-
"version": "2.0.0-alpha.1",
4-
"description": "A bautaJS example",
2+
"name": "@axa/bautajs-express-example",
3+
"version": "2.0.0",
4+
"description": "A bautaJS example in express",
55
"main": "./server.js",
66
"scripts": {
77
"start": "LOG_LEVEL=info DEBUG=bautajs* node ./server.js"
@@ -18,10 +18,10 @@
1818
],
1919
"license": "SEE LICENSE IN LICENSE.txt",
2020
"dependencies": {
21-
"@axa/bautajs-core": "^2.0.0-alpha.1",
22-
"@axa/bautajs-datasource-rest": "^2.0.0-alpha.1",
23-
"@axa/bautajs-decorator-cache": "^2.0.0-alpha.1",
24-
"@axa/bautajs-express": "^2.0.0-alpha.1",
21+
"@axa/bautajs-core": "^2.0.0",
22+
"@axa/bautajs-datasource-rest": "^2.0.0",
23+
"@axa/bautajs-decorator-cache": "^2.0.0",
24+
"@axa/bautajs-express": "^2.0.0",
2525
"@hapi/boom": "^10.0.0",
2626
"express": "^4.18.1",
2727
"pino": "^8.4.2",

packages/bautajs-express/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@axa/bautajs-express",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "A bautaJS Express.js plugin. Allow auto exposing the bautaJS operations.",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -25,7 +25,7 @@
2525
],
2626
"license": "SEE LICENSE IN LICENSE.txt",
2727
"dependencies": {
28-
"@axa/bautajs-core": "^2.0.0-alpha.1",
28+
"@axa/bautajs-core": "^2.0.0",
2929
"compression": "^1.7.4",
3030
"cors": "^2.8.5",
3131
"express": "^4.18.1",

packages/bautajs-fastify/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@axa/bautajs-fastify",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "A bautaJS fastify plugin. Allows auto exposing the bautaJS operations.",
55
"main": "dist",
66
"types": "dist",
@@ -26,13 +26,13 @@
2626
],
2727
"license": "SEE LICENSE IN LICENSE.txt",
2828
"dependencies": {
29-
"@axa/bautajs-core": "^2.0.0-alpha.1",
29+
"@axa/bautajs-core": "^2.0.0",
3030
"@fastify/swagger": "^7.4.1",
3131
"fastify": "^4.5.3",
3232
"fastify-plugin": "^4.2.1",
3333
"route-order": "^0.1.0"
3434
},
3535
"devDependencies": {
36-
"@axa/bautajs-datasource-rest": "^2.0.0-alpha.1"
36+
"@axa/bautajs-datasource-rest": "^2.0.0"
3737
}
3838
}

0 commit comments

Comments
 (0)