Skip to content

Commit eba0c7e

Browse files
authored
web v0.9.1 (#403)
* Update README instructions for releasing a new version - Use long form of commands so it's cleaer in the command itself - Add the title to the gh release create command * Version Bump v0.9.1
1 parent 1daeed0 commit eba0c7e

40 files changed

+117
-117
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ When releasing a new version, you need to commit a version bump, then tag and cr
5050

5151
1. Bump the version:
5252
- Run `npm run version-bump`. Select the type of version bump ([patch, minor, or major version](https://semver.org/)). Remember the version for the next steps, and fill it in instead of `<version>` (should be in semver format with `v` prefix, e.g. `v0.7.1`).
53-
- Commit your changes. `git commit -a -m "Version Bump <version>"`
54-
- Create a pull request. `gh pr create -f -w`
53+
- Commit your changes. `git commit --all --message="Version Bump <version>"`
54+
- Create a pull request. `gh pr create --fill --web`
5555
- Approve the pull request and merge to `main`.
5656
2. Generate the changelog:
5757
- Generate a [GitHub Personal access token](https://github.com/settings/tokens) with the `public_repo` scope. Copy this token and replace `<token>` with it below.
5858
- Generate the changelog: `GITHUB_AUTH=<token> npm run changelog -- --next-version=<version> > /tmp/changelog_<version>.md`
59-
3. Create the tag. Use the command line to create an annotated tag (lightweight tags will not work correctly with lerna-changelog): `git tag -a <version> -F /tmp/changelog_<version>.md`
59+
3. Create the tag. Use the command line to create an annotated tag (lightweight tags will not work correctly with lerna-changelog): `git tag --annotate <version> --file=/tmp/changelog_<version>.md`
6060
4. Push the tag: `git push origin <version>`
61-
5. Create the release: `gh release create <version> -F ~/tmp/changelog_<version>.md`
61+
5. Create the release: `gh release create <version> --notes-file ~/tmp/changelog_<version>.md --title <version>`
6262

6363
After the release is created, you can go to the [actions page](https://github.com/deephaven/web-client-ui/actions) to see the publish action being kicked off.
6464

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.9.0"
5+
"version": "0.9.1"
66
}

packages/babel-preset/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/babel-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deephaven/babel-preset",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Deephaven Babel preset",
55
"repository": "https://github.com/deephaven/web-client-ui",
66
"author": "Deephaven Data Labs LLC",

packages/chart/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/chart/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deephaven/chart",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Deephaven Chart",
55
"author": "Deephaven Data Labs LLC",
66
"license": "Apache-2.0",
@@ -29,9 +29,9 @@
2929
"start": "cross-env NODE_ENV=development npm run watch"
3030
},
3131
"dependencies": {
32-
"@deephaven/icons": "^0.9.0",
33-
"@deephaven/iris-grid": "^0.9.0",
34-
"@deephaven/jsapi-shim": "^0.9.0",
32+
"@deephaven/icons": "^0.9.1",
33+
"@deephaven/iris-grid": "^0.9.1",
34+
"@deephaven/jsapi-shim": "^0.9.1",
3535
"deep-equal": "^2.0.4",
3636
"lodash.debounce": "^4.0.8",
3737
"memoize-one": "^5.1.1",
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@babel/cli": "^7.16.0",
49-
"@deephaven/log": "^0.9.0",
49+
"@deephaven/log": "^0.9.1",
5050
"@deephaven/mocks": "^0.9.0",
5151
"@deephaven/tsconfig": "^0.9.0",
5252
"@types/react": "^16.14.8",

packages/code-studio/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/code-studio/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deephaven/code-studio",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Deephaven Code Studio",
55
"author": "Deephaven Data Labs LLC",
66
"license": "Apache-2.0",
@@ -10,22 +10,22 @@
1010
"url": "https://github.com/deephaven/web-client-ui"
1111
},
1212
"dependencies": {
13-
"@deephaven/chart": "^0.9.0",
14-
"@deephaven/components": "^0.9.0",
15-
"@deephaven/console": "^0.9.0",
16-
"@deephaven/dashboard": "^0.9.0",
17-
"@deephaven/dashboard-core-plugins": "^0.9.0",
18-
"@deephaven/file-explorer": "^0.9.0",
19-
"@deephaven/golden-layout": "^0.9.0",
20-
"@deephaven/grid": "^0.9.0",
21-
"@deephaven/icons": "^0.9.0",
22-
"@deephaven/iris-grid": "^0.9.0",
23-
"@deephaven/jsapi-shim": "^0.9.0",
24-
"@deephaven/log": "^0.9.0",
25-
"@deephaven/react-hooks": "^0.9.0",
26-
"@deephaven/redux": "^0.9.0",
27-
"@deephaven/storage": "^0.9.0",
28-
"@deephaven/utils": "^0.9.0",
13+
"@deephaven/chart": "^0.9.1",
14+
"@deephaven/components": "^0.9.1",
15+
"@deephaven/console": "^0.9.1",
16+
"@deephaven/dashboard": "^0.9.1",
17+
"@deephaven/dashboard-core-plugins": "^0.9.1",
18+
"@deephaven/file-explorer": "^0.9.1",
19+
"@deephaven/golden-layout": "^0.9.1",
20+
"@deephaven/grid": "^0.9.1",
21+
"@deephaven/icons": "^0.9.1",
22+
"@deephaven/iris-grid": "^0.9.1",
23+
"@deephaven/jsapi-shim": "^0.9.1",
24+
"@deephaven/log": "^0.9.1",
25+
"@deephaven/react-hooks": "^0.9.1",
26+
"@deephaven/redux": "^0.9.1",
27+
"@deephaven/storage": "^0.9.1",
28+
"@deephaven/utils": "^0.9.1",
2929
"@fortawesome/fontawesome-svg-core": "^1.2.32",
3030
"@fortawesome/react-fontawesome": "^0.1.12",
3131
"@paciolan/remote-component": "2.7.2",

packages/components/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deephaven/components",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Deephaven React component library",
55
"author": "Deephaven Data Labs LLC",
66
"license": "Apache-2.0",
@@ -29,9 +29,9 @@
2929
"start": "cross-env NODE_ENV=development npm run watch"
3030
},
3131
"dependencies": {
32-
"@deephaven/icons": "^0.9.0",
33-
"@deephaven/react-hooks": "^0.9.0",
34-
"@deephaven/utils": "^0.9.0",
32+
"@deephaven/icons": "^0.9.1",
33+
"@deephaven/react-hooks": "^0.9.1",
34+
"@deephaven/utils": "^0.9.1",
3535
"@fortawesome/fontawesome-svg-core": "^1.2.32",
3636
"@fortawesome/react-fontawesome": "^0.1.12",
3737
"bootstrap": "4.4.1",
@@ -57,7 +57,7 @@
5757
},
5858
"devDependencies": {
5959
"@babel/cli": "^7.16.0",
60-
"@deephaven/log": "^0.9.0",
60+
"@deephaven/log": "^0.9.1",
6161
"@deephaven/mocks": "^0.9.0",
6262
"@deephaven/tsconfig": "^0.9.0",
6363
"@types/bootstrap": "^4.4.1",

0 commit comments

Comments
 (0)