Skip to content

Commit 89034da

Browse files
authored
Merge pull request #41 from dqops/develop
Version number update to 1.8.0
2 parents cb56339 + cbefb1f commit 89034da

File tree

12 files changed

+34
-34
lines changed

12 files changed

+34
-34
lines changed

.github/workflows/main-publish-release.yml

+22-22
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,28 @@ jobs:
5454
with:
5555
credentials_json: ${{ secrets.RELEASES_SERVICE_ACCOUNT_JSON }}
5656

57+
- name: Create GitHub release
58+
uses: actions/create-release@v1
59+
id: create_release
60+
with:
61+
draft: false
62+
prerelease: false
63+
release_name: v${{ steps.read_version.outputs.content }}
64+
tag_name: v${{ steps.read_version.outputs.content }}
65+
body_path: CHANGELOG.md
66+
env:
67+
GITHUB_TOKEN: ${{ github.token }}
68+
69+
- name: Upload distribution binary file
70+
uses: actions/upload-release-asset@v1
71+
env:
72+
GITHUB_TOKEN: ${{ github.token }}
73+
with:
74+
upload_url: ${{ steps.create_release.outputs.upload_url }}
75+
asset_path: ./distribution/target/dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
76+
asset_name: dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
77+
asset_content_type: application/zip
78+
5779
- id: 'upload-release-asia'
5880
uses: 'google-github-actions/upload-cloud-storage@v2'
5981
with:
@@ -170,28 +192,6 @@ jobs:
170192
username: ${{ secrets.DOCKER_USERNAME }}
171193
password: ${{ secrets.DOCKER_PASSWORD }}
172194

173-
- name: Create GitHub release
174-
uses: actions/create-release@v1
175-
id: create_release
176-
with:
177-
draft: false
178-
prerelease: false
179-
release_name: v${{ steps.read_version.outputs.content }}
180-
tag_name: v${{ steps.read_version.outputs.content }}
181-
body_path: CHANGELOG.md
182-
env:
183-
GITHUB_TOKEN: ${{ github.token }}
184-
185-
- name: Upload distribution binary file
186-
uses: actions/upload-release-asset@v1
187-
env:
188-
GITHUB_TOKEN: ${{ github.token }}
189-
with:
190-
upload_url: ${{ steps.create_release.outputs.upload_url }}
191-
asset_path: ./distribution/target/dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
192-
asset_name: dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
193-
asset_content_type: application/zip
194-
195195
- name: Install python dependencies
196196
run: |
197197
python -m pip install --upgrade pip

.run/dqo run.run.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<option name="region" />
66
<option name="useCurrentConnection" value="false" />
77
</extension>
8-
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.7.0.jar" />
8+
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.8.0.jar" />
99
<option name="VM_PARAMETERS" value="-XX:MaxRAMPercentage=60.0 --add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED" />
1010
<option name="PROGRAM_PARAMETERS" value="--server.port=8888" />
1111
<option name="WORKING_DIRECTORY" value="C:\dev\dqoado" />

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.0
1+
1.8.0

distribution/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>com.dqops</groupId>
1313
<artifactId>dqo-distribution</artifactId>
14-
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
14+
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
1515
<name>dqo-distribution</name>
1616
<description>DQOps Data Quality Operations Center final assembly</description>
1717
<packaging>pom</packaging>

distribution/python/dqops/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
# limit
1616

1717
# WARNING: the next two lines with the version numbers (VERSION =, PIP_VERSION =) should not be modified manually. They are changed by a maven profile at compile time.
18-
VERSION = "1.7.0"
19-
PIP_VERSION = "1.7.0"
18+
VERSION = "1.8.0"
19+
PIP_VERSION = "1.8.0"
2020
GITHUB_RELEASE = "v" + VERSION + ""
2121
JAVA_VERSION = "17"
2222

dqo

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616
#
1717

18-
export DQO_VERSION=1.7.0
18+
export DQO_VERSION=1.8.0
1919

2020
# Configure local development environment overrides
2121
if [ -f $(dirname $0)/set-dqo-envs.sh ]; then

dqo.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@REM limitations under the License.
1616
@REM
1717

18-
set DQO_VERSION=1.7.0
18+
set DQO_VERSION=1.8.0
1919

2020
rem Configure local development environment overrides
2121
if exist "%~dp0set-dqo-envs.cmd" (

dqops/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</parent>
2828
<groupId>com.dqops</groupId>
2929
<artifactId>dqo-dqops</artifactId>
30-
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
30+
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
3131
<packaging>jar</packaging>
3232
<name>dqo-dqops</name>
3333
<description>DQOps Data Quality Operations Center</description>

dqops/src/main/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "DQOps",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"private": true,
55
"dependencies": {
66
"@codemirror/lang-python": "6.1.3",

dqops/src/main/resources/banner.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
| |) | | (_) | | (_) | | '_ \ (_-<
44
|___/ \__\_\ \___/ | .__/ /__/
55
|_|
6-
:: DQOps Data Quality Operations Center :: (v1.7.0)
6+
:: DQOps Data Quality Operations Center :: (v1.8.0)

lib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>com.dqops</groupId>
1313
<artifactId>dqo-lib</artifactId>
14-
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
14+
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
1515
<name>lib</name>
1616
<description>POM for a list of dependencies to libraries that should be distributed in the "lib" folder, especially all JDBC drivers.</description>
1717
<packaging>jar</packaging>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.dqops</groupId>
77
<artifactId>dqo-data-quality-observer</artifactId>
8-
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
8+
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
99
<packaging>pom</packaging>
1010
<description>DQOps Data Quality Operations Center</description>
1111

0 commit comments

Comments
 (0)