Skip to content

Commit

Permalink
started client version 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Jan 11, 2025
1 parent 1a34a1b commit 3cae241
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 18 deletions.
12 changes: 7 additions & 5 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ Now you can run the release script:

Finally commit your changes.

### How to bump the pom version
### Release Open-BPMN Client modules only

If you not run the release script you can also bumping the version number of OpenBPMN using a script:
To just release the latest client modules to [npmjs.com](https://www.npmjs.com/settings/open-bpmn/packages) you can run the script `release_npm.sh`. You need to provide the current client version and the next version:

$ changeVersion.sh <oldVersionString> <newVersionString>
$ ./scripts/release_npm.sh <oldVersionString> <newVersionString>

Specify the old and the new version. Example:

$ changeVersion.sh 0.3.0 0.4.0
$ ./scripts/release_npm.sh 0.3.0 0.4.0

Finally commit your changes.
This will push the libraries to npmjs.com and update the package versions

Finally you can commit your version changes to github.
2 changes: 1 addition & 1 deletion open-bpmn.glsp-client/lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.1",
"version": "1.2.2",
"npmClient": "yarn",
"command": {
"run": {
Expand Down
4 changes: 2 additions & 2 deletions open-bpmn.glsp-client/open-bpmn-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "open-bpmn-app",
"version": "1.2.1",
"version": "1.2.2",
"description": "Web App for Open BPMN",
"license": "(GPL-3.0)",
"scripts": {
Expand All @@ -11,7 +11,7 @@
"watch": "theia build --watch --mode development"
},
"dependencies": {
"@open-bpmn/open-bpmn-theia": "1.2.1",
"@open-bpmn/open-bpmn-theia": "1.2.2",
"@theia/core": "1.43.1",
"@theia/editor": "1.43.1",
"@theia/filesystem": "1.43.1",
Expand Down
6 changes: 3 additions & 3 deletions open-bpmn.glsp-client/open-bpmn-glsp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-bpmn/open-bpmn-glsp",
"version": "1.2.1",
"version": "1.2.2",
"description": "GLSP diagrams for BPMN 2.0",
"keywords": [
"glsp",
Expand All @@ -25,8 +25,8 @@
],
"dependencies": {
"@eclipse-glsp/client": "2.1.0",
"@open-bpmn/open-bpmn-model": "1.2.1",
"@open-bpmn/open-bpmn-properties": "1.2.1",
"@open-bpmn/open-bpmn-model": "1.2.2",
"@open-bpmn/open-bpmn-properties": "1.2.2",
"balloon-css": "^0.5.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion open-bpmn.glsp-client/open-bpmn-model/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-bpmn/open-bpmn-model",
"version": "1.2.1",
"version": "1.2.2",
"description": "GLSP model for BPMN 2.0",
"license": "(GPL-3.0)",
"main": "lib/index",
Expand Down
4 changes: 2 additions & 2 deletions open-bpmn.glsp-client/open-bpmn-properties/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-bpmn/open-bpmn-properties",
"version": "1.2.1",
"version": "1.2.2",
"description": "GLSP property panel for BPMN 2.0",
"license": "(GPL-3.0)",
"main": "lib/index",
Expand All @@ -19,7 +19,7 @@
},
"dependencies": {
"@eclipse-glsp/client": "2.1.0",
"@open-bpmn/open-bpmn-model": "1.2.1",
"@open-bpmn/open-bpmn-model": "1.2.2",
"@jsonforms/core": "3.0.0",
"@jsonforms/react": "3.0.0",
"@jsonforms/vanilla-renderers": "3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions open-bpmn.glsp-client/open-bpmn-theia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-bpmn/open-bpmn-theia",
"version": "1.2.1",
"version": "1.2.2",
"description": "Theia extension for the BPMN GLSP Client",
"keywords": [
"theia-extension"
Expand All @@ -26,7 +26,7 @@
"src"
],
"dependencies": {
"@open-bpmn/open-bpmn-glsp": "1.2.1",
"@open-bpmn/open-bpmn-glsp": "1.2.2",
"@eclipse-glsp/theia-integration": "2.1.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const DEFAULT_PORT = 0;
export const PORT_ARG_KEY = 'GLSP_PORT';
export const LOG_DIR = join(__dirname, '..', '..', 'logs');
const JAR_FILE = resolve(
join(__dirname, '..', '..', '..', '..', 'open-bpmn.glsp-server', 'target', 'open-bpmn.server-1.2.1-SNAPSHOT-glsp.jar')
join(__dirname, '..', '..', '..', '..', 'open-bpmn.glsp-server', 'target', 'open-bpmn.server-1.2.2-SNAPSHOT-glsp.jar')
);

@injectable()
Expand Down
2 changes: 1 addition & 1 deletion open-bpmn.glsp-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parent",
"version": "1.2.1",
"version": "1.2.2",
"description": "Open BPMN 2.0",
"homepage": "https://www.imixs.org/",
"bugs": "https://github.com/imixs/open-bpmn/issues",
Expand Down

0 comments on commit 3cae241

Please sign in to comment.