Skip to content

Commit

Permalink
release: 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Idrinth committed Mar 24, 2024
1 parent 4f40d0e commit 59213a9
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 21 deletions.
2 changes: 1 addition & 1 deletion containers/gitea-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG NODE_VERSION=21.7.1
ARG ALPINE_VERSION=3.19
ARG GITEA_ACTION_VERSION=0.2.6
ARG IDRINTH_API_BENCH_VERSION=1.4.3
ARG IDRINTH_API_BENCH_VERSION=2.7.0

FROM node:${NODE_VERSION}-alpine AS node
FROM gitea/act_runner:${GITEA_ACTION_VERSION} AS gitea
Expand Down
2 changes: 1 addition & 1 deletion containers/gitlab-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG NODE_VERSION=21.7.1
ARG ALPINE_VERSION=3.19
ARG GITLAB_RUNNER_VERSION=v16.10.0
ARG IDRINTH_API_BENCH_VERSION=1.4.3
ARG IDRINTH_API_BENCH_VERSION=2.7.0

FROM node:${NODE_VERSION}-alpine AS node
FROM gitlab/gitlab-runner:alpine${ALPINE_VERSION}-${GITLAB_RUNNER_VERSION} AS gitlab
Expand Down
4 changes: 2 additions & 2 deletions documentation-website/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@idrinth/api-bench/website",
"private": true,
"version": "2.6.0",
"version": "2.7.0",
"license": "MIT",
"homepage": "https://idrinth-api-ben.ch",
"type": "module",
Expand Down Expand Up @@ -86,4 +86,4 @@
"node": ">=20"
},
"engineStrict": true
}
}
4 changes: 2 additions & 2 deletions framework/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@idrinth/api-bench",
"description": "A library to benchmark apis, no matter if rest or soap",
"license": "MIT",
"version": "2.6.0",
"version": "2.7.0",
"homepage": "https://idrinth-api-ben.ch",
"type": "module",
"main": "index.js",
Expand Down Expand Up @@ -97,4 +97,4 @@
"node": ">=20"
},
"engineStrict": true
}
}
4 changes: 2 additions & 2 deletions history-microservice/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@idrinth/api-bench",
"description": "A library to benchmark apis, no matter if rest or soap",
"license": "MIT",
"version": "2.6.0",
"version": "2.7.0",
"homepage": "https://idrinth-api-ben.ch",
"type": "module",
"main": "index.js",
Expand Down Expand Up @@ -65,4 +65,4 @@
"node": ">=20"
},
"engineStrict": true
}
}
4 changes: 2 additions & 2 deletions history-website/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@idrinth/api-bench/history/ui",
"private": true,
"version": "0.0.0",
"version": "2.7.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -28,4 +28,4 @@
"node": ">=20"
},
"engineStrict": true
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idrinth/api-bench/root",
"version": "2.6.0",
"version": "2.7.0",
"description": "",
"license": "MIT",
"homepage": "https://idrinth-api-ben.ch",
Expand Down Expand Up @@ -33,4 +33,4 @@
"node": ">=20"
},
"engineStrict": true
}
}
8 changes: 3 additions & 5 deletions tools/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ rl.question(
for (const file of [
'/package.json',
'/framework/package.json',
'/website/package.json',
'/documentation-website/package.json',
'/history-website/package.json',
'/history-microservice/package.json',
]) {
if (! existsSync(process.cwd() + file,)) {
console.error('File ' + file + ' missing',);
Expand All @@ -50,10 +52,6 @@ rl.question(
'cd framework && npm install',
true,
);
exec(
'cd website && npm install',
true,
);
writeFileSync(
process.cwd() + '/framework/LICENSE',
readFileSync(process.cwd() + '/LICENSE', 'utf8',),
Expand Down

0 comments on commit 59213a9

Please sign in to comment.