Skip to content
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
5 changes: 5 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
Unreleased
==========

.. _changelog-0.4.0:

0.4.0 - 2023-04-19
==================

✨ Added
--------
* Added support for metrics
Expand Down
2 changes: 1 addition & 1 deletion exasol/toolbox/nox/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
import nox
from nox import Session

from exasol.toolbox.project import python_files as _python_files
from exasol.toolbox.metrics import (
Format,
create_report,
format_report,
)
from exasol.toolbox.project import python_files as _python_files
from noxconfig import (
PROJECT_CONFIG,
Config,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0

- name: Build Artifacts
run: poetry build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0

- name: Check Tag Version
# make sure the pushed/created tag matched the project version
Expand Down
10 changes: 5 additions & 5 deletions exasol/toolbox/templates/.github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0

- name: Check Version(s)
run: poetry run version-check exasol/toolbox/version.py
Expand All @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0

- name: Build Documentation
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -71,7 +71,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -93,7 +93,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions exasol/toolbox/templates/.github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ jobs:

check-tag-version-job:
name: Check Release Tag
uses: exasol/python-toolbox/.github/workflows/check-release-tag.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/check-release-tag.yml@0.4.0

ci-job:
name: Checks
needs: [ check-tag-version-job ]
uses: exasol/python-toolbox/.github/workflows/checks.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/checks.yml@0.4.0

cd-job:
name: Continues Delivery
needs: [ ci-job ]
uses: exasol/python-toolbox/.github/workflows/build-and-publish.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/build-and-publish.yml@0.4.0
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

metrics:
needs: [ ci-job ]
uses: exasol/python-toolbox/.github/workflows/report.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/report.yml@0.4.0
4 changes: 2 additions & 2 deletions exasol/toolbox/templates/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:

ci-job:
name: Checks
uses: exasol/python-toolbox/.github/workflows/checks.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/checks.yml@0.4.0

metrics:
needs: [ ci-job ]
uses: exasol/python-toolbox/.github/workflows/report.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/report.yml@0.4.0
2 changes: 1 addition & 1 deletion exasol/toolbox/templates/.github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0

- name: Build Documentation
run: |
Expand Down
6 changes: 3 additions & 3 deletions exasol/toolbox/templates/.github/workflows/pr-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:

ci-job:
name: Checks
uses: exasol/python-toolbox/.github/workflows/checks.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/checks.yml@0.4.0

publish-docs:
name: Publish Documentation
uses: exasol/python-toolbox/.github/workflows/gh-pages.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/gh-pages.yml@0.4.0

metrics:
needs: [ ci-job ]
uses: exasol/python-toolbox/.github/workflows/report.yml@0.3.0
uses: exasol/python-toolbox/.github/workflows/report.yml@0.4.0
2 changes: 1 addition & 1 deletion exasol/toolbox/templates/.github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 0

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.3.0
uses: exasol/python-toolbox/.github/actions/python-environment@0.4.0

- name: Download Artifacts
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion exasol/toolbox/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# This file is generated, do not edit it manually!
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
MAJOR = 0
MINOR = 3
MINOR = 4
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "exasol-toolbox"
packages = [
{ include = "exasol" },
]
version = "0.3.0"
version = "0.4.0"
description = ""
authors = [
"Nicola Coretti <nicola.coretti@exasol.com>"
Expand Down