From 9fb0ff159c59df7e600e6ce5c0a60470129baade Mon Sep 17 00:00:00 2001 From: jainshrk Date: Mon, 3 Feb 2025 12:16:02 +0530 Subject: [PATCH] prep 1.68 --- README.md | 8 +++--- pom.xml | 2 +- waltz-common/pom.xml | 2 +- waltz-data/pom.xml | 2 +- waltz-integration-test/pom.xml | 2 +- waltz-jobs/pom.xml | 2 +- waltz-model/pom.xml | 2 +- waltz-ng/package.json | 2 +- waltz-schema/pom.xml | 2 +- .../liquibase/db.changelog-master.xml | 3 +++ .../resources/liquibase/db.changelog.1.68.xml | 27 +++++++++++++++++++ waltz-service/pom.xml | 2 +- waltz-test-common/pom.xml | 2 +- waltz-web/pom.xml | 2 +- 14 files changed, 45 insertions(+), 15 deletions(-) create mode 100644 waltz-schema/src/main/resources/liquibase/db.changelog.1.68.xml diff --git a/README.md b/README.md index 4676c65344..6aab15c58b 100644 --- a/README.md +++ b/README.md @@ -66,10 +66,10 @@ progress and done issues. **Provisional** dates for upcoming releases: -| Release | Date | Provisional Change Summary | -|---------|----------|------------------------------| -| 1.66 | Nov 2024 | AGF Survey Changes and Fixes | -| 1.67 | Dec 2024 | TBC | +| Release | Date | Provisional Change Summary | +|---------|----------|-----------------------------------------------------------| +| 1.67 | Jan 2024 | Deprecation of measureables form the UI, and other fixes. | +| 1.68 | Feb 2024 | TBC | See the [releases](https://github.com/finos/waltz/releases) page for historic versions. diff --git a/pom.xml b/pom.xml index bea0e493df..7359ddd032 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,7 @@ org.finos waltz - 1.67-SNAPSHOT + 1.68-SNAPSHOT waltz-common waltz-model diff --git a/waltz-common/pom.xml b/waltz-common/pom.xml index 8f91f8606d..ed0811b452 100644 --- a/waltz-common/pom.xml +++ b/waltz-common/pom.xml @@ -23,7 +23,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-data/pom.xml b/waltz-data/pom.xml index b1f34515aa..a6c1377c9d 100644 --- a/waltz-data/pom.xml +++ b/waltz-data/pom.xml @@ -23,7 +23,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-integration-test/pom.xml b/waltz-integration-test/pom.xml index b6dc92ffe8..5b11941cea 100644 --- a/waltz-integration-test/pom.xml +++ b/waltz-integration-test/pom.xml @@ -23,7 +23,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-jobs/pom.xml b/waltz-jobs/pom.xml index 10e535046a..1e87cdd273 100644 --- a/waltz-jobs/pom.xml +++ b/waltz-jobs/pom.xml @@ -23,7 +23,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-model/pom.xml b/waltz-model/pom.xml index 78392fc386..b6cf2e4274 100644 --- a/waltz-model/pom.xml +++ b/waltz-model/pom.xml @@ -23,7 +23,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-ng/package.json b/waltz-ng/package.json index e0c26d3e1d..6c60b4bb53 100644 --- a/waltz-ng/package.json +++ b/waltz-ng/package.json @@ -1,6 +1,6 @@ { "name": "waltz-ng", - "version": "1.67.0", + "version": "1.68.0", "description": "To start test server run: `npm run dev-server` and ensure java backend is running on 8443", "main": "client/main.js", "browserslist": [ diff --git a/waltz-schema/pom.xml b/waltz-schema/pom.xml index 82ca2c4f3c..793f66601c 100644 --- a/waltz-schema/pom.xml +++ b/waltz-schema/pom.xml @@ -22,7 +22,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-schema/src/main/resources/liquibase/db.changelog-master.xml b/waltz-schema/src/main/resources/liquibase/db.changelog-master.xml index 85a70139a4..e7ac6d04d6 100644 --- a/waltz-schema/src/main/resources/liquibase/db.changelog-master.xml +++ b/waltz-schema/src/main/resources/liquibase/db.changelog-master.xml @@ -230,4 +230,7 @@ + + \ No newline at end of file diff --git a/waltz-schema/src/main/resources/liquibase/db.changelog.1.68.xml b/waltz-schema/src/main/resources/liquibase/db.changelog.1.68.xml new file mode 100644 index 0000000000..18c5180fed --- /dev/null +++ b/waltz-schema/src/main/resources/liquibase/db.changelog.1.68.xml @@ -0,0 +1,27 @@ + + + + + + + \ No newline at end of file diff --git a/waltz-service/pom.xml b/waltz-service/pom.xml index 222275cf92..309d739a90 100644 --- a/waltz-service/pom.xml +++ b/waltz-service/pom.xml @@ -24,7 +24,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-test-common/pom.xml b/waltz-test-common/pom.xml index 1fe6471707..d372850102 100644 --- a/waltz-test-common/pom.xml +++ b/waltz-test-common/pom.xml @@ -5,7 +5,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 diff --git a/waltz-web/pom.xml b/waltz-web/pom.xml index f55fa4e60e..e6bdd3b214 100644 --- a/waltz-web/pom.xml +++ b/waltz-web/pom.xml @@ -20,7 +20,7 @@ waltz org.finos - 1.67-SNAPSHOT + 1.68-SNAPSHOT 4.0.0 waltz-web