Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.8.0 #42

Merged
merged 2 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions .github/workflows/main-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,28 @@ jobs:
with:
credentials_json: ${{ secrets.RELEASES_SERVICE_ACCOUNT_JSON }}

- name: Create GitHub release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
release_name: v${{ steps.read_version.outputs.content }}
tag_name: v${{ steps.read_version.outputs.content }}
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Upload distribution binary file
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./distribution/target/dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
asset_name: dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
asset_content_type: application/zip

- id: 'upload-release-asia'
uses: 'google-github-actions/upload-cloud-storage@v2'
with:
Expand Down Expand Up @@ -170,28 +192,6 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Create GitHub release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
release_name: v${{ steps.read_version.outputs.content }}
tag_name: v${{ steps.read_version.outputs.content }}
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Upload distribution binary file
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./distribution/target/dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
asset_name: dqo-distribution-${{steps.read_version.outputs.content}}-bin.zip
asset_content_type: application/zip

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .run/dqo run.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<option name="region" />
<option name="useCurrentConnection" value="false" />
</extension>
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.7.0.jar" />
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.8.0.jar" />
<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" />
<option name="PROGRAM_PARAMETERS" value="--server.port=8888" />
<option name="WORKING_DIRECTORY" value="C:\dev\dqoado" />
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.0
1.8.0
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.dqops</groupId>
<artifactId>dqo-distribution</artifactId>
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<name>dqo-distribution</name>
<description>DQOps Data Quality Operations Center final assembly</description>
<packaging>pom</packaging>
Expand Down
4 changes: 2 additions & 2 deletions distribution/python/dqops/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# limit

# 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.
VERSION = "1.7.0"
PIP_VERSION = "1.7.0"
VERSION = "1.8.0"
PIP_VERSION = "1.8.0"
GITHUB_RELEASE = "v" + VERSION + ""
JAVA_VERSION = "17"

Expand Down
2 changes: 1 addition & 1 deletion dqo
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

export DQO_VERSION=1.7.0
export DQO_VERSION=1.8.0

# Configure local development environment overrides
if [ -f $(dirname $0)/set-dqo-envs.sh ]; then
Expand Down
2 changes: 1 addition & 1 deletion dqo.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@REM limitations under the License.
@REM

set DQO_VERSION=1.7.0
set DQO_VERSION=1.8.0

rem Configure local development environment overrides
if exist "%~dp0set-dqo-envs.cmd" (
Expand Down
2 changes: 1 addition & 1 deletion dqops/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</parent>
<groupId>com.dqops</groupId>
<artifactId>dqo-dqops</artifactId>
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<packaging>jar</packaging>
<name>dqo-dqops</name>
<description>DQOps Data Quality Operations Center</description>
Expand Down
2 changes: 1 addition & 1 deletion dqops/src/main/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "DQOps",
"version": "1.7.0",
"version": "1.8.0",
"private": true,
"dependencies": {
"@codemirror/lang-python": "6.1.3",
Expand Down
2 changes: 1 addition & 1 deletion dqops/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
| |) | | (_) | | (_) | | '_ \ (_-<
|___/ \__\_\ \___/ | .__/ /__/
|_|
:: DQOps Data Quality Operations Center :: (v1.7.0)
:: DQOps Data Quality Operations Center :: (v1.8.0)
2 changes: 1 addition & 1 deletion lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.dqops</groupId>
<artifactId>dqo-lib</artifactId>
<version>1.7.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<version>1.8.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<name>lib</name>
<description>POM for a list of dependencies to libraries that should be distributed in the "lib" folder, especially all JDBC drivers.</description>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

Expand Down
Loading