Skip to content

Commit d4efa0f

Browse files
authored
Merge pull request #89 from VisActor/sync/main-1.2.10-none
[Auto Sync] Sync the code from branch main to branch develop after release 1.2.10-none
2 parents b179980 + ef2815f commit d4efa0f

8 files changed

Lines changed: 39 additions & 9 deletions

File tree

common/config/rush/pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/config/rush/version-policies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"definitionName": "lockStepVersion",
44
"policyName": "vmindMin",
5-
"version": "1.2.9",
5+
"version": "1.2.10",
66
"mainProject": "@visactor/vmind",
77
"nextBump": "patch"
88
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
const writePrereleaseVersion = require('./set-prerelease-version');
2+
const checkAndUpdateNextBump = require('./version-policies');
3+
const parseVersion = require('./parse-version');
4+
5+
6+
function run() {
7+
const preReleaseName = process.argv.slice(2)[0];
8+
const nextVersionOrNextBump = process.argv.slice(2)[1];
9+
const buildName = process.argv.slice(2)[2];
10+
const nextBump = checkAndUpdateNextBump(nextVersionOrNextBump);
11+
const parsedNextVersion = nextVersionOrNextBump ? parseVersion(nextVersionOrNextBump) : null;
12+
const nextVersion = parsedNextVersion ? `${parsedNextVersion.major}.${parsedNextVersion.minor}.${parsedNextVersion.patch}`: null;
13+
14+
console.log('[apply prerelease version]: ', preReleaseName, nextBump, nextVersion);
15+
16+
writePrereleaseVersion(nextBump, preReleaseName, nextVersion, buildName);
17+
}
18+
19+
run()

packages/calculator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@visactor/calculator",
3-
"version": "1.2.9",
3+
"version": "1.2.10-none",
44
"description": "SQL-like query executor with DSL",
55
"main": "lib",
66
"module": "es",

packages/chart-advisor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@visactor/chart-advisor",
3-
"version": "1.2.9",
3+
"version": "1.2.10-none",
44
"description": "图表推荐模块",
55
"main": "lib",
66
"module": "es",

packages/vmind/CHANGELOG.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"name": "@visactor/vmind",
33
"entries": [
4+
{
5+
"version": "1.2.10",
6+
"tag": "@visactor/vmind_v1.2.10",
7+
"date": "Wed, 24 Apr 2024 04:55:20 GMT",
8+
"comments": {}
9+
},
410
{
511
"version": "1.2.9",
612
"tag": "@visactor/vmind_v1.2.9",

packages/vmind/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log - @visactor/vmind
22

3-
This log was last generated on Fri, 19 Apr 2024 08:54:48 GMT and should not be manually modified.
3+
This log was last generated on Wed, 24 Apr 2024 04:55:20 GMT and should not be manually modified.
4+
5+
## 1.2.10
6+
Wed, 24 Apr 2024 04:55:20 GMT
7+
8+
_Version update only_
49

510
## 1.2.9
611
Fri, 19 Apr 2024 08:54:48 GMT

packages/vmind/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@visactor/vmind",
3-
"version": "1.2.9",
3+
"version": "1.2.10-none",
44
"main": "cjs/index.js",
55
"module": "esm/index.js",
66
"types": "esm/index.d.ts",
@@ -87,7 +87,7 @@
8787
"canvas": "^2.11.2"
8888
},
8989
"dependencies": {
90-
"@visactor/chart-advisor": "workspace:*",
90+
"@visactor/chart-advisor": "workspace:1.2.10-none",
9191
"@visactor/vdataset": "~0.17.4",
9292
"@visactor/vutils": "~0.17.4",
9393
"axios": "^1.4.0",
@@ -96,7 +96,7 @@
9696
"json5": "~2.2.3",
9797
"dayjs": "~1.11.10",
9898
"js-yaml": "~4.1.0",
99-
"@visactor/calculator": "workspace:*",
99+
"@visactor/calculator": "workspace:1.2.10-none",
100100
"alasql": "~4.3.2"
101101
}
102102
}

0 commit comments

Comments
 (0)