File tree Expand file tree Collapse file tree 12 files changed +26
-21
lines changed
templates/.github/workflows Expand file tree Collapse file tree 12 files changed +26
-21
lines changed Original file line number Diff line number Diff line change 66Unreleased
77==========
88
9+ .. _changelog-0.4.0 :
10+
11+ 0.4.0 - 2023-04-19
12+ ==================
13+
914✨ Added
1015--------
1116* Added support for metrics
Original file line number Diff line number Diff line change 3333import nox
3434from nox import Session
3535
36- from exasol .toolbox .project import python_files as _python_files
3736from exasol .toolbox .metrics import (
3837 Format ,
3938 create_report ,
4039 format_report ,
4140)
41+ from exasol .toolbox .project import python_files as _python_files
4242from noxconfig import (
4343 PROJECT_CONFIG ,
4444 Config ,
Original file line number Diff line number Diff line change 1717 uses : actions/checkout@v3
1818
1919 - name : Setup Python & Poetry Environment
20- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
20+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
2121
2222 - name : Build Artifacts
2323 run : poetry build
Original file line number Diff line number Diff line change 1414 uses : actions/checkout@v3
1515
1616 - name : Setup Python & Poetry Environment
17- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
17+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
1818
1919 - name : Check Tag Version
2020 # make sure the pushed/created tag matched the project version
Original file line number Diff line number Diff line change 1515 fetch-depth : 0
1616
1717 - name : Setup Python & Poetry Environment
18- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
18+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
1919
2020 - name : Check Version(s)
2121 run : poetry run version-check exasol/toolbox/version.py
3030 uses : actions/checkout@v3
3131
3232 - name : Setup Python & Poetry Environment
33- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
33+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
3434
3535 - name : Build Documentation
3636 run : |
5050 uses : actions/checkout@v3
5151
5252 - name : Setup Python & Poetry Environment
53- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
53+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
5454 with :
5555 python-version : ${{ matrix.python-version }}
5656
7171 uses : actions/checkout@v3
7272
7373 - name : Setup Python & Poetry Environment
74- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
74+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
7575 with :
7676 python-version : ${{ matrix.python-version }}
7777
9393 uses : actions/checkout@v3
9494
9595 - name : Setup Python & Poetry Environment
96- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
96+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
9797 with :
9898 python-version : ${{ matrix.python-version }}
9999
Original file line number Diff line number Diff line change 99
1010 check-tag-version-job :
1111 name : Check Release Tag
12- uses : exasol/python-toolbox/.github/workflows/check-release-tag.yml@0.3 .0
12+ uses : exasol/python-toolbox/.github/workflows/check-release-tag.yml@0.4 .0
1313
1414 ci-job :
1515 name : Checks
1616 needs : [ check-tag-version-job ]
17- uses : exasol/python-toolbox/.github/workflows/checks.yml@0.3 .0
17+ uses : exasol/python-toolbox/.github/workflows/checks.yml@0.4 .0
1818
1919 cd-job :
2020 name : Continues Delivery
2121 needs : [ ci-job ]
22- uses : exasol/python-toolbox/.github/workflows/build-and-publish.yml@0.3 .0
22+ uses : exasol/python-toolbox/.github/workflows/build-and-publish.yml@0.4 .0
2323 secrets :
2424 PYPI_TOKEN : ${{ secrets.PYPI_TOKEN }}
2525
2626 metrics :
2727 needs : [ ci-job ]
28- uses : exasol/python-toolbox/.github/workflows/report.yml@0.3 .0
28+ uses : exasol/python-toolbox/.github/workflows/report.yml@0.4 .0
Original file line number Diff line number Diff line change 1717
1818 ci-job :
1919 name : Checks
20- uses : exasol/python-toolbox/.github/workflows/checks.yml@0.3 .0
20+ uses : exasol/python-toolbox/.github/workflows/checks.yml@0.4 .0
2121
2222 metrics :
2323 needs : [ ci-job ]
24- uses : exasol/python-toolbox/.github/workflows/report.yml@0.3 .0
24+ uses : exasol/python-toolbox/.github/workflows/report.yml@0.4 .0
Original file line number Diff line number Diff line change 1212 uses : actions/checkout@v3
1313
1414 - name : Setup Python & Poetry Environment
15- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
15+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
1616
1717 - name : Build Documentation
1818 run : |
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ jobs:
1010
1111 ci-job :
1212 name : Checks
13- uses : exasol/python-toolbox/.github/workflows/checks.yml@0.3 .0
13+ uses : exasol/python-toolbox/.github/workflows/checks.yml@0.4 .0
1414
1515 publish-docs :
1616 name : Publish Documentation
17- uses : exasol/python-toolbox/.github/workflows/gh-pages.yml@0.3 .0
17+ uses : exasol/python-toolbox/.github/workflows/gh-pages.yml@0.4 .0
1818
1919 metrics :
2020 needs : [ ci-job ]
21- uses : exasol/python-toolbox/.github/workflows/report.yml@0.3 .0
21+ uses : exasol/python-toolbox/.github/workflows/report.yml@0.4 .0
Original file line number Diff line number Diff line change 2121 fetch-depth : 0
2222
2323 - name : Setup Python & Poetry Environment
24- uses : exasol/python-toolbox/.github/actions/python-environment@0.3 .0
24+ uses : exasol/python-toolbox/.github/actions/python-environment@0.4 .0
2525
2626 - name : Download Artifacts
2727 uses : actions/download-artifact@v3
You can’t perform that action at this time.
0 commit comments