From 9c4d49b39f4a86cc8e44cec80e05c5b5e970adc3 Mon Sep 17 00:00:00 2001 From: Rene Pfeuffer Date: Fri, 29 Nov 2019 11:41:04 +0100 Subject: [PATCH 1/6] Add script to change versions in package.json with lerna --- package.json | 3 ++- scm-ui/ui-scripts/bin/ui-scripts.js | 2 +- scm-ui/ui-scripts/src/commands/publish.js | 2 +- scm-ui/ui-scripts/src/commands/version.js | 12 ++++++++++++ 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 scm-ui/ui-scripts/src/commands/version.js diff --git a/package.json b/package.json index b2f14826c5..8034538536 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,8 @@ "test": "lerna run --scope '@scm-manager/ui-*' test", "typecheck": "lerna run --scope '@scm-manager/ui-*' typecheck", "serve": "webpack-dev-server --mode=development --config=scm-ui/ui-scripts/src/webpack.config.js", - "deploy": "ui-scripts publish" + "deploy": "ui-scripts publish", + "version": "ui-scripts version" }, "devDependencies": { "babel-plugin-reflow": "^0.2.7", diff --git a/scm-ui/ui-scripts/bin/ui-scripts.js b/scm-ui/ui-scripts/bin/ui-scripts.js index 41549ac27a..28f5ef3315 100755 --- a/scm-ui/ui-scripts/bin/ui-scripts.js +++ b/scm-ui/ui-scripts/bin/ui-scripts.js @@ -1,7 +1,7 @@ #!/usr/bin/env node const { spawnSync } = require("child_process"); -const commands = ["plugin", "plugin-watch", "publish"]; +const commands = ["plugin", "plugin-watch", "publish", "version"]; const args = process.argv.slice(2); diff --git a/scm-ui/ui-scripts/src/commands/publish.js b/scm-ui/ui-scripts/src/commands/publish.js index d3cdc60724..2e5ad90440 100644 --- a/scm-ui/ui-scripts/src/commands/publish.js +++ b/scm-ui/ui-scripts/src/commands/publish.js @@ -4,7 +4,7 @@ const versions = require("../versions"); const args = process.argv.slice(2); if (args.length < 1) { - console.log("usage ui-scripts publish version"); + console.log("usage ui-scripts publish "); process.exit(1); } diff --git a/scm-ui/ui-scripts/src/commands/version.js b/scm-ui/ui-scripts/src/commands/version.js new file mode 100644 index 0000000000..c1feb85318 --- /dev/null +++ b/scm-ui/ui-scripts/src/commands/version.js @@ -0,0 +1,12 @@ +const lerna = require("../lerna"); + +const args = process.argv.slice(2); + +if (args.length < 1) { + console.log("usage ui-scripts version "); + process.exit(1); +} + +const version = args[0]; + +lerna.version(version); From fc8677617b13ebd7c0e20a3b93ce2cbf6cefebe6 Mon Sep 17 00:00:00 2001 From: Rene Pfeuffer Date: Mon, 2 Dec 2019 08:49:31 +0100 Subject: [PATCH 2/6] Disable StopThreadsCleanUp When this is enabled, we get timeouts on some machines (seems to depend on the number of cores) when the server is stopped which leads to an error when the integration tests are run (the server cannot be stopped fast enough when the integration tests are finished in webapp and shall be started for scm-it). --- .../scm/lifecycle/classloading/ClassLoaderLifeCycle.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scm-webapp/src/main/java/sonia/scm/lifecycle/classloading/ClassLoaderLifeCycle.java b/scm-webapp/src/main/java/sonia/scm/lifecycle/classloading/ClassLoaderLifeCycle.java index 24d1c239b4..de2480f563 100644 --- a/scm-webapp/src/main/java/sonia/scm/lifecycle/classloading/ClassLoaderLifeCycle.java +++ b/scm-webapp/src/main/java/sonia/scm/lifecycle/classloading/ClassLoaderLifeCycle.java @@ -6,6 +6,7 @@ import org.slf4j.LoggerFactory; import se.jiderhamn.classloader.leak.prevention.ClassLoaderLeakPreventor; import se.jiderhamn.classloader.leak.prevention.ClassLoaderLeakPreventorFactory; import se.jiderhamn.classloader.leak.prevention.cleanup.MBeanCleanUp; +import se.jiderhamn.classloader.leak.prevention.cleanup.StopThreadsCleanUp; import se.jiderhamn.classloader.leak.prevention.preinit.SunAwtAppContextInitiator; import sonia.scm.lifecycle.LifeCycle; import sonia.scm.plugin.ChildFirstPluginClassLoader; @@ -43,6 +44,9 @@ public final class ClassLoaderLifeCycle implements LifeCycle { classLoaderLeakPreventorFactory.removePreInitiator(SunAwtAppContextInitiator.class); // the MBeanCleanUp causes a Exception and we use no mbeans classLoaderLeakPreventorFactory.removeCleanUp(MBeanCleanUp.class); + // the StopThreadsCleanUp leads to timeouts on shutdown - we try to stop our threads on our own + classLoaderLeakPreventorFactory.removeCleanUp(StopThreadsCleanUp.class); + return new ClassLoaderLifeCycle(Thread.currentThread().getContextClassLoader(), classLoaderLeakPreventorFactory); } From 1c3d3057354a6e5a0dffb8021e41a3f1ee382b3d Mon Sep 17 00:00:00 2001 From: Rene Pfeuffer Date: Mon, 2 Dec 2019 11:56:08 +0100 Subject: [PATCH 3/6] Update to new legman version 1.6.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 910287abf0..7a8e16b869 100644 --- a/pom.xml +++ b/pom.xml @@ -839,7 +839,7 @@ 2.3.0 - 1.5.1 + 1.6.0 9.4.22.v20191022 From 2d08ba4adc73f00714cdadcb23357c05ad740c39 Mon Sep 17 00:00:00 2001 From: Rene Pfeuffer Date: Mon, 2 Dec 2019 12:52:33 +0100 Subject: [PATCH 4/6] Release version 2.0.0-rc1 --- lerna.json | 2 +- pom.xml | 2 +- scm-annotation-processor/pom.xml | 6 ++--- scm-annotations/pom.xml | 4 ++-- scm-core/pom.xml | 8 +++---- scm-dao-xml/pom.xml | 8 +++---- scm-it/pom.xml | 20 ++++++++--------- scm-plugins/pom.xml | 10 ++++----- scm-plugins/scm-git-plugin/package.json | 4 ++-- scm-plugins/scm-git-plugin/pom.xml | 2 +- scm-plugins/scm-hg-plugin/package.json | 4 ++-- scm-plugins/scm-hg-plugin/pom.xml | 2 +- scm-plugins/scm-legacy-plugin/package.json | 4 ++-- scm-plugins/scm-legacy-plugin/pom.xml | 4 ++-- scm-plugins/scm-svn-plugin/package.json | 4 ++-- scm-plugins/scm-svn-plugin/pom.xml | 2 +- scm-server/pom.xml | 4 ++-- scm-test/pom.xml | 6 ++--- scm-ui/babel-preset/package.json | 2 +- scm-ui/eslint-config/package.json | 2 +- scm-ui/jest-preset/package.json | 2 +- scm-ui/pom.xml | 4 ++-- scm-ui/prettier-config/package.json | 2 +- scm-ui/tsconfig/package.json | 2 +- scm-ui/ui-components/package.json | 8 +++---- scm-ui/ui-extensions/package.json | 2 +- scm-ui/ui-plugins/package.json | 22 +++++++++--------- scm-ui/ui-polyfill/package.json | 2 +- scm-ui/ui-scripts/package.json | 2 +- scm-ui/ui-styles/package.json | 2 +- scm-ui/ui-tests/package.json | 2 +- scm-ui/ui-types/package.json | 2 +- scm-ui/ui-webapp/package.json | 8 +++---- scm-webapp/pom.xml | 26 +++++++++++----------- 34 files changed, 93 insertions(+), 93 deletions(-) diff --git a/lerna.json b/lerna.json index 405d16a397..e7765ac966 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "2.0.0-SNAPSHOT" + "version": "2.0.0-rc1" } diff --git a/pom.xml b/pom.xml index 7a8e16b869..07c7602fdf 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ sonia.scm scm pom - 2.0.0-SNAPSHOT + 2.0.0-rc1 The easiest way to share your Git, Mercurial and Subversion repositories over http. diff --git a/scm-annotation-processor/pom.xml b/scm-annotation-processor/pom.xml index fc4419ba41..843b635a17 100644 --- a/scm-annotation-processor/pom.xml +++ b/scm-annotation-processor/pom.xml @@ -6,12 +6,12 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-annotation-processor - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-annotation-processor @@ -21,7 +21,7 @@ sonia.scm scm-annotations - 2.0.0-SNAPSHOT + 2.0.0-rc1 diff --git a/scm-annotations/pom.xml b/scm-annotations/pom.xml index c5a892af95..86981b1d97 100644 --- a/scm-annotations/pom.xml +++ b/scm-annotations/pom.xml @@ -6,11 +6,11 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-annotations - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-annotations diff --git a/scm-core/pom.xml b/scm-core/pom.xml index 8437b256b2..a8addc9779 100644 --- a/scm-core/pom.xml +++ b/scm-core/pom.xml @@ -6,12 +6,12 @@ scm sonia.scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-core - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-core @@ -30,7 +30,7 @@ sonia.scm scm-annotations - 2.0.0-SNAPSHOT + 2.0.0-rc1 @@ -192,7 +192,7 @@ sonia.scm scm-annotation-processor - 2.0.0-SNAPSHOT + 2.0.0-rc1 provided diff --git a/scm-dao-xml/pom.xml b/scm-dao-xml/pom.xml index 5424d38f26..de8323e323 100644 --- a/scm-dao-xml/pom.xml +++ b/scm-dao-xml/pom.xml @@ -6,12 +6,12 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-dao-xml - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-dao-xml @@ -26,7 +26,7 @@ sonia.scm scm-core - 2.0.0-SNAPSHOT + 2.0.0-rc1 @@ -34,7 +34,7 @@ sonia.scm scm-test - 2.0.0-SNAPSHOT + 2.0.0-rc1 test diff --git a/scm-it/pom.xml b/scm-it/pom.xml index c38c73ce3e..30503d974f 100644 --- a/scm-it/pom.xml +++ b/scm-it/pom.xml @@ -6,40 +6,40 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-it war - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-it sonia.scm scm-core - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-test - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm.plugins scm-git-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 test sonia.scm.plugins scm-git-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 tests test @@ -47,14 +47,14 @@ sonia.scm.plugins scm-hg-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 test sonia.scm.plugins scm-hg-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 tests test @@ -62,14 +62,14 @@ sonia.scm.plugins scm-svn-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 test sonia.scm.plugins scm-svn-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 tests test diff --git a/scm-plugins/pom.xml b/scm-plugins/pom.xml index 1611633449..710054ab58 100644 --- a/scm-plugins/pom.xml +++ b/scm-plugins/pom.xml @@ -6,13 +6,13 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm.plugins scm-plugins pom - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-plugins @@ -34,7 +34,7 @@ sonia.scm scm-core - 2.0.0-SNAPSHOT + 2.0.0-rc1 provided @@ -43,7 +43,7 @@ sonia.scm scm-annotation-processor - 2.0.0-SNAPSHOT + 2.0.0-rc1 provided @@ -66,7 +66,7 @@ sonia.scm scm-test - 2.0.0-SNAPSHOT + 2.0.0-rc1 test diff --git a/scm-plugins/scm-git-plugin/package.json b/scm-plugins/scm-git-plugin/package.json index 8ca5d633e4..5e30664d48 100644 --- a/scm-plugins/scm-git-plugin/package.json +++ b/scm-plugins/scm-git-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-git-plugin", "private": true, - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "main": "./src/main/js/index.ts", "scripts": { @@ -20,6 +20,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.0.0-rc1" } } diff --git a/scm-plugins/scm-git-plugin/pom.xml b/scm-plugins/scm-git-plugin/pom.xml index 0cace5e94d..fecd88fd26 100644 --- a/scm-plugins/scm-git-plugin/pom.xml +++ b/scm-plugins/scm-git-plugin/pom.xml @@ -6,7 +6,7 @@ scm-plugins sonia.scm.plugins - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-git-plugin diff --git a/scm-plugins/scm-hg-plugin/package.json b/scm-plugins/scm-hg-plugin/package.json index 8baaa729cb..2d0e91a436 100644 --- a/scm-plugins/scm-hg-plugin/package.json +++ b/scm-plugins/scm-hg-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-hg-plugin", "private": true, - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "main": "./src/main/js/index.ts", "scripts": { @@ -19,6 +19,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.0.0-rc1" } } diff --git a/scm-plugins/scm-hg-plugin/pom.xml b/scm-plugins/scm-hg-plugin/pom.xml index e57652bf0f..725f649607 100644 --- a/scm-plugins/scm-hg-plugin/pom.xml +++ b/scm-plugins/scm-hg-plugin/pom.xml @@ -6,7 +6,7 @@ sonia.scm.plugins scm-plugins - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-hg-plugin diff --git a/scm-plugins/scm-legacy-plugin/package.json b/scm-plugins/scm-legacy-plugin/package.json index 2e8ed49862..6bf028aa0f 100644 --- a/scm-plugins/scm-legacy-plugin/package.json +++ b/scm-plugins/scm-legacy-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-legacy-plugin", "private": true, - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "main": "./src/main/js/index.tsx", "scripts": { @@ -19,6 +19,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.0.0-rc1" } } diff --git a/scm-plugins/scm-legacy-plugin/pom.xml b/scm-plugins/scm-legacy-plugin/pom.xml index 1a12234014..1b35c958e7 100644 --- a/scm-plugins/scm-legacy-plugin/pom.xml +++ b/scm-plugins/scm-legacy-plugin/pom.xml @@ -4,12 +4,12 @@ sonia.scm.plugins scm-plugins - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-legacy-plugin Support migrated repository urls and v1 passwords - 2.0.0-SNAPSHOT + 2.0.0-rc1 smp diff --git a/scm-plugins/scm-svn-plugin/package.json b/scm-plugins/scm-svn-plugin/package.json index c7b0c125b3..f2d28f5a5e 100644 --- a/scm-plugins/scm-svn-plugin/package.json +++ b/scm-plugins/scm-svn-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-svn-plugin", "private": true, - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "main": "./src/main/js/index.ts", "scripts": { @@ -19,6 +19,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" + "@scm-manager/ui-plugins": "^2.0.0-rc1" } } diff --git a/scm-plugins/scm-svn-plugin/pom.xml b/scm-plugins/scm-svn-plugin/pom.xml index 8ed7a7bef4..64b461a8bd 100644 --- a/scm-plugins/scm-svn-plugin/pom.xml +++ b/scm-plugins/scm-svn-plugin/pom.xml @@ -6,7 +6,7 @@ scm-plugins sonia.scm.plugins - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-svn-plugin diff --git a/scm-server/pom.xml b/scm-server/pom.xml index 74f6466821..e982fe66ce 100644 --- a/scm-server/pom.xml +++ b/scm-server/pom.xml @@ -6,12 +6,12 @@ scm sonia.scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-server - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-server jar diff --git a/scm-test/pom.xml b/scm-test/pom.xml index bddbcf2c85..d92fc2d7d5 100644 --- a/scm-test/pom.xml +++ b/scm-test/pom.xml @@ -6,12 +6,12 @@ scm sonia.scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-test - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-test @@ -25,7 +25,7 @@ sonia.scm scm-core - 2.0.0-SNAPSHOT + 2.0.0-rc1 diff --git a/scm-ui/babel-preset/package.json b/scm-ui/babel-preset/package.json index 4751670f65..39f8d0882b 100644 --- a/scm-ui/babel-preset/package.json +++ b/scm-ui/babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/babel-preset", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "description": "Babel configuration for scm-manager and its plugins", "main": "index.js", diff --git a/scm-ui/eslint-config/package.json b/scm-ui/eslint-config/package.json index b819ad5bd5..e946237d9d 100644 --- a/scm-ui/eslint-config/package.json +++ b/scm-ui/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/eslint-config", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "ESLint configuration for scm-manager and its plugins", "main": "index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/jest-preset/package.json b/scm-ui/jest-preset/package.json index c9efe9fe38..e7ad08782e 100644 --- a/scm-ui/jest-preset/package.json +++ b/scm-ui/jest-preset/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/jest-preset", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "Jest presets for SCM-Manager and its plugins", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/pom.xml b/scm-ui/pom.xml index ffc727f10d..fdaec15328 100644 --- a/scm-ui/pom.xml +++ b/scm-ui/pom.xml @@ -7,13 +7,13 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-ui war - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-ui diff --git a/scm-ui/prettier-config/package.json b/scm-ui/prettier-config/package.json index 584081645c..8298a4c0f0 100644 --- a/scm-ui/prettier-config/package.json +++ b/scm-ui/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/prettier-config", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "description": "Prettier configuration", "author": "Sebastian Sdorra ", diff --git a/scm-ui/tsconfig/package.json b/scm-ui/tsconfig/package.json index 4ee8613469..5843558a5e 100644 --- a/scm-ui/tsconfig/package.json +++ b/scm-ui/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/tsconfig", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "description": "TypeScript configuration", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-components/package.json b/scm-ui/ui-components/package.json index e7266aae6f..d7ab44b959 100644 --- a/scm-ui/ui-components/package.json +++ b/scm-ui/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-components", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "UI Components for SCM-Manager and its plugins", "main": "src/index.ts", "files": [ @@ -18,7 +18,7 @@ "update-storyshots": "jest --testPathPattern=\"storyshots.test.ts\" --collectCoverage=false -u" }, "devDependencies": { - "@scm-manager/ui-tests": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-tests": "^2.0.0-rc1", "@storybook/addon-actions": "^5.2.3", "@storybook/addon-storyshots": "^5.2.3", "@storybook/react": "^5.2.3", @@ -45,8 +45,8 @@ "typescript": "^3.6.4" }, "dependencies": { - "@scm-manager/ui-extensions": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-types": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-extensions": "^2.0.0-rc1", + "@scm-manager/ui-types": "^2.0.0-rc1", "classnames": "^2.2.6", "date-fns": "^2.4.1", "query-string": "5", diff --git a/scm-ui/ui-extensions/package.json b/scm-ui/ui-extensions/package.json index 28e1d99905..242e60c9fb 100644 --- a/scm-ui/ui-extensions/package.json +++ b/scm-ui/ui-extensions/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-extensions", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "main": "src/index.ts", "license": "BSD-3-Clause", "private": false, diff --git a/scm-ui/ui-plugins/package.json b/scm-ui/ui-plugins/package.json index 2e1fdb119f..537217a098 100644 --- a/scm-ui/ui-plugins/package.json +++ b/scm-ui/ui-plugins/package.json @@ -1,18 +1,18 @@ { "name": "@scm-manager/ui-plugins", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "license": "BSD-3-Clause", "dependencies": { - "@scm-manager/babel-preset": "^2.0.0-SNAPSHOT", - "@scm-manager/eslint-config": "^2.0.0-SNAPSHOT", - "@scm-manager/jest-preset": "^2.0.0-SNAPSHOT", - "@scm-manager/prettier-config": "^2.0.0-SNAPSHOT", - "@scm-manager/tsconfig": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-components": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-extensions": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-scripts": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-tests": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-types": "^2.0.0-SNAPSHOT", + "@scm-manager/babel-preset": "^2.0.0-rc1", + "@scm-manager/eslint-config": "^2.0.0-rc1", + "@scm-manager/jest-preset": "^2.0.0-rc1", + "@scm-manager/prettier-config": "^2.0.0-rc1", + "@scm-manager/tsconfig": "^2.0.0-rc1", + "@scm-manager/ui-components": "^2.0.0-rc1", + "@scm-manager/ui-extensions": "^2.0.0-rc1", + "@scm-manager/ui-scripts": "^2.0.0-rc1", + "@scm-manager/ui-tests": "^2.0.0-rc1", + "@scm-manager/ui-types": "^2.0.0-rc1", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1", diff --git a/scm-ui/ui-polyfill/package.json b/scm-ui/ui-polyfill/package.json index 81922e37c8..3181ee078f 100644 --- a/scm-ui/ui-polyfill/package.json +++ b/scm-ui/ui-polyfill/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-polyfill", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "Polyfills for SCM-Manager UI", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-scripts/package.json b/scm-ui/ui-scripts/package.json index 7ef5d2819c..fd3d9a491e 100644 --- a/scm-ui/ui-scripts/package.json +++ b/scm-ui/ui-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-scripts", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "Build scripts for SCM-Manager", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-styles/package.json b/scm-ui/ui-styles/package.json index 16fdb5b307..4e0856a3ad 100644 --- a/scm-ui/ui-styles/package.json +++ b/scm-ui/ui-styles/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-styles", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "Styles for SCM-Manager", "main": "src/scm.scss", "license": "BSD-3-Clause", diff --git a/scm-ui/ui-tests/package.json b/scm-ui/ui-tests/package.json index 45978d3836..cfb5b35628 100644 --- a/scm-ui/ui-tests/package.json +++ b/scm-ui/ui-tests/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-tests", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "UI-Tests helpers", "author": "Sebastian Sdorra ", "license": "BSD-3-Clause", diff --git a/scm-ui/ui-types/package.json b/scm-ui/ui-types/package.json index fb971290a8..1c2a96d574 100644 --- a/scm-ui/ui-types/package.json +++ b/scm-ui/ui-types/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-types", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "description": "Flow types for SCM-Manager related Objects", "main": "src/index.ts", "files": [ diff --git a/scm-ui/ui-webapp/package.json b/scm-ui/ui-webapp/package.json index af33163aeb..322b09d07e 100644 --- a/scm-ui/ui-webapp/package.json +++ b/scm-ui/ui-webapp/package.json @@ -1,10 +1,10 @@ { "name": "@scm-manager/ui-webapp", - "version": "2.0.0-SNAPSHOT", + "version": "2.0.0-rc1", "private": true, "dependencies": { - "@scm-manager/ui-components": "^2.0.0-SNAPSHOT", - "@scm-manager/ui-extensions": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-components": "^2.0.0-rc1", + "@scm-manager/ui-extensions": "^2.0.0-rc1", "classnames": "^2.2.5", "history": "^4.10.1", "i18next": "^17.3.0", @@ -30,7 +30,7 @@ "flow": "flow" }, "devDependencies": { - "@scm-manager/ui-tests": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-tests": "^2.0.0-rc1", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1", diff --git a/scm-webapp/pom.xml b/scm-webapp/pom.xml index 571c3b5370..9bc163d0a9 100644 --- a/scm-webapp/pom.xml +++ b/scm-webapp/pom.xml @@ -6,13 +6,13 @@ sonia.scm scm - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-webapp war - 2.0.0-SNAPSHOT + 2.0.0-rc1 scm-webapp @@ -22,7 +22,7 @@ sonia.scm scm-annotation-processor - 2.0.0-SNAPSHOT + 2.0.0-rc1 provided @@ -47,13 +47,13 @@ sonia.scm scm-core - 2.0.0-SNAPSHOT + 2.0.0-rc1 sonia.scm scm-dao-xml - 2.0.0-SNAPSHOT + 2.0.0-rc1 @@ -288,7 +288,7 @@ sonia.scm scm-test - 2.0.0-SNAPSHOT + 2.0.0-rc1 test @@ -344,7 +344,7 @@ sonia.scm.plugins scm-git-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 tests test @@ -352,14 +352,14 @@ sonia.scm.plugins scm-git-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 test sonia.scm.plugins scm-hg-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 tests test @@ -367,14 +367,14 @@ sonia.scm.plugins scm-hg-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 test sonia.scm.plugins scm-svn-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 tests test @@ -382,7 +382,7 @@ sonia.scm.plugins scm-svn-plugin - 2.0.0-SNAPSHOT + 2.0.0-rc1 test @@ -606,7 +606,7 @@ sonia.scm scm-ui - 2.0.0-SNAPSHOT + 2.0.0-rc1 war From 426a616a513744783d6eabf2908771b01c17828f Mon Sep 17 00:00:00 2001 From: Rene Pfeuffer Date: Mon, 2 Dec 2019 12:53:19 +0100 Subject: [PATCH 5/6] Added tag 2.0.0-rc1 for changeset 93d7a07f2524 From 516bbe6f26fb2e7c89f2ab4a880a0a5a6f5125d7 Mon Sep 17 00:00:00 2001 From: Rene Pfeuffer Date: Mon, 2 Dec 2019 15:15:34 +0100 Subject: [PATCH 6/6] Prepare for next development iteration --- lerna.json | 2 +- pom.xml | 2 +- scm-annotation-processor/pom.xml | 6 ++--- scm-annotations/pom.xml | 4 ++-- scm-core/pom.xml | 8 +++---- scm-dao-xml/pom.xml | 8 +++---- scm-it/pom.xml | 20 ++++++++--------- scm-plugins/pom.xml | 10 ++++----- scm-plugins/scm-git-plugin/package.json | 4 ++-- scm-plugins/scm-git-plugin/pom.xml | 2 +- scm-plugins/scm-hg-plugin/package.json | 4 ++-- scm-plugins/scm-hg-plugin/pom.xml | 2 +- scm-plugins/scm-legacy-plugin/package.json | 4 ++-- scm-plugins/scm-legacy-plugin/pom.xml | 4 ++-- scm-plugins/scm-svn-plugin/package.json | 4 ++-- scm-plugins/scm-svn-plugin/pom.xml | 2 +- scm-server/pom.xml | 4 ++-- scm-test/pom.xml | 6 ++--- scm-ui/babel-preset/package.json | 2 +- scm-ui/eslint-config/package.json | 2 +- scm-ui/jest-preset/package.json | 2 +- scm-ui/pom.xml | 4 ++-- scm-ui/prettier-config/package.json | 2 +- scm-ui/tsconfig/package.json | 2 +- scm-ui/ui-components/package.json | 8 +++---- scm-ui/ui-extensions/package.json | 2 +- scm-ui/ui-plugins/package.json | 22 +++++++++--------- scm-ui/ui-polyfill/package.json | 2 +- scm-ui/ui-scripts/package.json | 2 +- scm-ui/ui-styles/package.json | 2 +- scm-ui/ui-tests/package.json | 2 +- scm-ui/ui-types/package.json | 2 +- scm-ui/ui-webapp/package.json | 8 +++---- scm-webapp/pom.xml | 26 +++++++++++----------- 34 files changed, 93 insertions(+), 93 deletions(-) diff --git a/lerna.json b/lerna.json index e7765ac966..405d16a397 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "2.0.0-rc1" + "version": "2.0.0-SNAPSHOT" } diff --git a/pom.xml b/pom.xml index 07c7602fdf..7a8e16b869 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ sonia.scm scm pom - 2.0.0-rc1 + 2.0.0-SNAPSHOT The easiest way to share your Git, Mercurial and Subversion repositories over http. diff --git a/scm-annotation-processor/pom.xml b/scm-annotation-processor/pom.xml index 843b635a17..fc4419ba41 100644 --- a/scm-annotation-processor/pom.xml +++ b/scm-annotation-processor/pom.xml @@ -6,12 +6,12 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-annotation-processor - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-annotation-processor @@ -21,7 +21,7 @@ sonia.scm scm-annotations - 2.0.0-rc1 + 2.0.0-SNAPSHOT diff --git a/scm-annotations/pom.xml b/scm-annotations/pom.xml index 86981b1d97..c5a892af95 100644 --- a/scm-annotations/pom.xml +++ b/scm-annotations/pom.xml @@ -6,11 +6,11 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-annotations - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-annotations diff --git a/scm-core/pom.xml b/scm-core/pom.xml index a8addc9779..8437b256b2 100644 --- a/scm-core/pom.xml +++ b/scm-core/pom.xml @@ -6,12 +6,12 @@ scm sonia.scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-core - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-core @@ -30,7 +30,7 @@ sonia.scm scm-annotations - 2.0.0-rc1 + 2.0.0-SNAPSHOT @@ -192,7 +192,7 @@ sonia.scm scm-annotation-processor - 2.0.0-rc1 + 2.0.0-SNAPSHOT provided diff --git a/scm-dao-xml/pom.xml b/scm-dao-xml/pom.xml index de8323e323..5424d38f26 100644 --- a/scm-dao-xml/pom.xml +++ b/scm-dao-xml/pom.xml @@ -6,12 +6,12 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-dao-xml - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-dao-xml @@ -26,7 +26,7 @@ sonia.scm scm-core - 2.0.0-rc1 + 2.0.0-SNAPSHOT @@ -34,7 +34,7 @@ sonia.scm scm-test - 2.0.0-rc1 + 2.0.0-SNAPSHOT test diff --git a/scm-it/pom.xml b/scm-it/pom.xml index 30503d974f..c38c73ce3e 100644 --- a/scm-it/pom.xml +++ b/scm-it/pom.xml @@ -6,40 +6,40 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-it war - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-it sonia.scm scm-core - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-test - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm.plugins scm-git-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT test sonia.scm.plugins scm-git-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT tests test @@ -47,14 +47,14 @@ sonia.scm.plugins scm-hg-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT test sonia.scm.plugins scm-hg-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT tests test @@ -62,14 +62,14 @@ sonia.scm.plugins scm-svn-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT test sonia.scm.plugins scm-svn-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT tests test diff --git a/scm-plugins/pom.xml b/scm-plugins/pom.xml index 710054ab58..1611633449 100644 --- a/scm-plugins/pom.xml +++ b/scm-plugins/pom.xml @@ -6,13 +6,13 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm.plugins scm-plugins pom - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-plugins @@ -34,7 +34,7 @@ sonia.scm scm-core - 2.0.0-rc1 + 2.0.0-SNAPSHOT provided @@ -43,7 +43,7 @@ sonia.scm scm-annotation-processor - 2.0.0-rc1 + 2.0.0-SNAPSHOT provided @@ -66,7 +66,7 @@ sonia.scm scm-test - 2.0.0-rc1 + 2.0.0-SNAPSHOT test diff --git a/scm-plugins/scm-git-plugin/package.json b/scm-plugins/scm-git-plugin/package.json index 5e30664d48..8ca5d633e4 100644 --- a/scm-plugins/scm-git-plugin/package.json +++ b/scm-plugins/scm-git-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-git-plugin", "private": true, - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "main": "./src/main/js/index.ts", "scripts": { @@ -20,6 +20,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-rc1" + "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" } } diff --git a/scm-plugins/scm-git-plugin/pom.xml b/scm-plugins/scm-git-plugin/pom.xml index fecd88fd26..0cace5e94d 100644 --- a/scm-plugins/scm-git-plugin/pom.xml +++ b/scm-plugins/scm-git-plugin/pom.xml @@ -6,7 +6,7 @@ scm-plugins sonia.scm.plugins - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-git-plugin diff --git a/scm-plugins/scm-hg-plugin/package.json b/scm-plugins/scm-hg-plugin/package.json index 2d0e91a436..8baaa729cb 100644 --- a/scm-plugins/scm-hg-plugin/package.json +++ b/scm-plugins/scm-hg-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-hg-plugin", "private": true, - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "main": "./src/main/js/index.ts", "scripts": { @@ -19,6 +19,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-rc1" + "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" } } diff --git a/scm-plugins/scm-hg-plugin/pom.xml b/scm-plugins/scm-hg-plugin/pom.xml index 725f649607..e57652bf0f 100644 --- a/scm-plugins/scm-hg-plugin/pom.xml +++ b/scm-plugins/scm-hg-plugin/pom.xml @@ -6,7 +6,7 @@ sonia.scm.plugins scm-plugins - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-hg-plugin diff --git a/scm-plugins/scm-legacy-plugin/package.json b/scm-plugins/scm-legacy-plugin/package.json index 6bf028aa0f..2e8ed49862 100644 --- a/scm-plugins/scm-legacy-plugin/package.json +++ b/scm-plugins/scm-legacy-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-legacy-plugin", "private": true, - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "main": "./src/main/js/index.tsx", "scripts": { @@ -19,6 +19,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-rc1" + "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" } } diff --git a/scm-plugins/scm-legacy-plugin/pom.xml b/scm-plugins/scm-legacy-plugin/pom.xml index 1b35c958e7..1a12234014 100644 --- a/scm-plugins/scm-legacy-plugin/pom.xml +++ b/scm-plugins/scm-legacy-plugin/pom.xml @@ -4,12 +4,12 @@ sonia.scm.plugins scm-plugins - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-legacy-plugin Support migrated repository urls and v1 passwords - 2.0.0-rc1 + 2.0.0-SNAPSHOT smp diff --git a/scm-plugins/scm-svn-plugin/package.json b/scm-plugins/scm-svn-plugin/package.json index f2d28f5a5e..c7b0c125b3 100644 --- a/scm-plugins/scm-svn-plugin/package.json +++ b/scm-plugins/scm-svn-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-svn-plugin", "private": true, - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "main": "./src/main/js/index.ts", "scripts": { @@ -19,6 +19,6 @@ }, "prettier": "@scm-manager/prettier-config", "dependencies": { - "@scm-manager/ui-plugins": "^2.0.0-rc1" + "@scm-manager/ui-plugins": "^2.0.0-SNAPSHOT" } } diff --git a/scm-plugins/scm-svn-plugin/pom.xml b/scm-plugins/scm-svn-plugin/pom.xml index 64b461a8bd..8ed7a7bef4 100644 --- a/scm-plugins/scm-svn-plugin/pom.xml +++ b/scm-plugins/scm-svn-plugin/pom.xml @@ -6,7 +6,7 @@ scm-plugins sonia.scm.plugins - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-svn-plugin diff --git a/scm-server/pom.xml b/scm-server/pom.xml index e982fe66ce..74f6466821 100644 --- a/scm-server/pom.xml +++ b/scm-server/pom.xml @@ -6,12 +6,12 @@ scm sonia.scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-server - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-server jar diff --git a/scm-test/pom.xml b/scm-test/pom.xml index d92fc2d7d5..bddbcf2c85 100644 --- a/scm-test/pom.xml +++ b/scm-test/pom.xml @@ -6,12 +6,12 @@ scm sonia.scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-test - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-test @@ -25,7 +25,7 @@ sonia.scm scm-core - 2.0.0-rc1 + 2.0.0-SNAPSHOT diff --git a/scm-ui/babel-preset/package.json b/scm-ui/babel-preset/package.json index 39f8d0882b..4751670f65 100644 --- a/scm-ui/babel-preset/package.json +++ b/scm-ui/babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/babel-preset", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "description": "Babel configuration for scm-manager and its plugins", "main": "index.js", diff --git a/scm-ui/eslint-config/package.json b/scm-ui/eslint-config/package.json index e946237d9d..b819ad5bd5 100644 --- a/scm-ui/eslint-config/package.json +++ b/scm-ui/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/eslint-config", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "ESLint configuration for scm-manager and its plugins", "main": "index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/jest-preset/package.json b/scm-ui/jest-preset/package.json index e7ad08782e..c9efe9fe38 100644 --- a/scm-ui/jest-preset/package.json +++ b/scm-ui/jest-preset/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/jest-preset", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "Jest presets for SCM-Manager and its plugins", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/pom.xml b/scm-ui/pom.xml index fdaec15328..ffc727f10d 100644 --- a/scm-ui/pom.xml +++ b/scm-ui/pom.xml @@ -7,13 +7,13 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-ui war - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-ui diff --git a/scm-ui/prettier-config/package.json b/scm-ui/prettier-config/package.json index 8298a4c0f0..584081645c 100644 --- a/scm-ui/prettier-config/package.json +++ b/scm-ui/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/prettier-config", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "description": "Prettier configuration", "author": "Sebastian Sdorra ", diff --git a/scm-ui/tsconfig/package.json b/scm-ui/tsconfig/package.json index 5843558a5e..4ee8613469 100644 --- a/scm-ui/tsconfig/package.json +++ b/scm-ui/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/tsconfig", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "description": "TypeScript configuration", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-components/package.json b/scm-ui/ui-components/package.json index d7ab44b959..e7266aae6f 100644 --- a/scm-ui/ui-components/package.json +++ b/scm-ui/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-components", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "UI Components for SCM-Manager and its plugins", "main": "src/index.ts", "files": [ @@ -18,7 +18,7 @@ "update-storyshots": "jest --testPathPattern=\"storyshots.test.ts\" --collectCoverage=false -u" }, "devDependencies": { - "@scm-manager/ui-tests": "^2.0.0-rc1", + "@scm-manager/ui-tests": "^2.0.0-SNAPSHOT", "@storybook/addon-actions": "^5.2.3", "@storybook/addon-storyshots": "^5.2.3", "@storybook/react": "^5.2.3", @@ -45,8 +45,8 @@ "typescript": "^3.6.4" }, "dependencies": { - "@scm-manager/ui-extensions": "^2.0.0-rc1", - "@scm-manager/ui-types": "^2.0.0-rc1", + "@scm-manager/ui-extensions": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-types": "^2.0.0-SNAPSHOT", "classnames": "^2.2.6", "date-fns": "^2.4.1", "query-string": "5", diff --git a/scm-ui/ui-extensions/package.json b/scm-ui/ui-extensions/package.json index 242e60c9fb..28e1d99905 100644 --- a/scm-ui/ui-extensions/package.json +++ b/scm-ui/ui-extensions/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-extensions", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "main": "src/index.ts", "license": "BSD-3-Clause", "private": false, diff --git a/scm-ui/ui-plugins/package.json b/scm-ui/ui-plugins/package.json index 537217a098..2e1fdb119f 100644 --- a/scm-ui/ui-plugins/package.json +++ b/scm-ui/ui-plugins/package.json @@ -1,18 +1,18 @@ { "name": "@scm-manager/ui-plugins", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "license": "BSD-3-Clause", "dependencies": { - "@scm-manager/babel-preset": "^2.0.0-rc1", - "@scm-manager/eslint-config": "^2.0.0-rc1", - "@scm-manager/jest-preset": "^2.0.0-rc1", - "@scm-manager/prettier-config": "^2.0.0-rc1", - "@scm-manager/tsconfig": "^2.0.0-rc1", - "@scm-manager/ui-components": "^2.0.0-rc1", - "@scm-manager/ui-extensions": "^2.0.0-rc1", - "@scm-manager/ui-scripts": "^2.0.0-rc1", - "@scm-manager/ui-tests": "^2.0.0-rc1", - "@scm-manager/ui-types": "^2.0.0-rc1", + "@scm-manager/babel-preset": "^2.0.0-SNAPSHOT", + "@scm-manager/eslint-config": "^2.0.0-SNAPSHOT", + "@scm-manager/jest-preset": "^2.0.0-SNAPSHOT", + "@scm-manager/prettier-config": "^2.0.0-SNAPSHOT", + "@scm-manager/tsconfig": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-components": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-extensions": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-scripts": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-tests": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-types": "^2.0.0-SNAPSHOT", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1", diff --git a/scm-ui/ui-polyfill/package.json b/scm-ui/ui-polyfill/package.json index 3181ee078f..81922e37c8 100644 --- a/scm-ui/ui-polyfill/package.json +++ b/scm-ui/ui-polyfill/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-polyfill", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "Polyfills for SCM-Manager UI", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-scripts/package.json b/scm-ui/ui-scripts/package.json index fd3d9a491e..7ef5d2819c 100644 --- a/scm-ui/ui-scripts/package.json +++ b/scm-ui/ui-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-scripts", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "Build scripts for SCM-Manager", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-styles/package.json b/scm-ui/ui-styles/package.json index 4e0856a3ad..16fdb5b307 100644 --- a/scm-ui/ui-styles/package.json +++ b/scm-ui/ui-styles/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-styles", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "Styles for SCM-Manager", "main": "src/scm.scss", "license": "BSD-3-Clause", diff --git a/scm-ui/ui-tests/package.json b/scm-ui/ui-tests/package.json index cfb5b35628..45978d3836 100644 --- a/scm-ui/ui-tests/package.json +++ b/scm-ui/ui-tests/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-tests", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "UI-Tests helpers", "author": "Sebastian Sdorra ", "license": "BSD-3-Clause", diff --git a/scm-ui/ui-types/package.json b/scm-ui/ui-types/package.json index 1c2a96d574..fb971290a8 100644 --- a/scm-ui/ui-types/package.json +++ b/scm-ui/ui-types/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-types", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "description": "Flow types for SCM-Manager related Objects", "main": "src/index.ts", "files": [ diff --git a/scm-ui/ui-webapp/package.json b/scm-ui/ui-webapp/package.json index 322b09d07e..af33163aeb 100644 --- a/scm-ui/ui-webapp/package.json +++ b/scm-ui/ui-webapp/package.json @@ -1,10 +1,10 @@ { "name": "@scm-manager/ui-webapp", - "version": "2.0.0-rc1", + "version": "2.0.0-SNAPSHOT", "private": true, "dependencies": { - "@scm-manager/ui-components": "^2.0.0-rc1", - "@scm-manager/ui-extensions": "^2.0.0-rc1", + "@scm-manager/ui-components": "^2.0.0-SNAPSHOT", + "@scm-manager/ui-extensions": "^2.0.0-SNAPSHOT", "classnames": "^2.2.5", "history": "^4.10.1", "i18next": "^17.3.0", @@ -30,7 +30,7 @@ "flow": "flow" }, "devDependencies": { - "@scm-manager/ui-tests": "^2.0.0-rc1", + "@scm-manager/ui-tests": "^2.0.0-SNAPSHOT", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1", diff --git a/scm-webapp/pom.xml b/scm-webapp/pom.xml index 9bc163d0a9..571c3b5370 100644 --- a/scm-webapp/pom.xml +++ b/scm-webapp/pom.xml @@ -6,13 +6,13 @@ sonia.scm scm - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-webapp war - 2.0.0-rc1 + 2.0.0-SNAPSHOT scm-webapp @@ -22,7 +22,7 @@ sonia.scm scm-annotation-processor - 2.0.0-rc1 + 2.0.0-SNAPSHOT provided @@ -47,13 +47,13 @@ sonia.scm scm-core - 2.0.0-rc1 + 2.0.0-SNAPSHOT sonia.scm scm-dao-xml - 2.0.0-rc1 + 2.0.0-SNAPSHOT @@ -288,7 +288,7 @@ sonia.scm scm-test - 2.0.0-rc1 + 2.0.0-SNAPSHOT test @@ -344,7 +344,7 @@ sonia.scm.plugins scm-git-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT tests test @@ -352,14 +352,14 @@ sonia.scm.plugins scm-git-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT test sonia.scm.plugins scm-hg-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT tests test @@ -367,14 +367,14 @@ sonia.scm.plugins scm-hg-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT test sonia.scm.plugins scm-svn-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT tests test @@ -382,7 +382,7 @@ sonia.scm.plugins scm-svn-plugin - 2.0.0-rc1 + 2.0.0-SNAPSHOT test @@ -606,7 +606,7 @@ sonia.scm scm-ui - 2.0.0-rc1 + 2.0.0-SNAPSHOT war