Skip to content

Commit

Permalink
Bump to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Nov 29, 2022
1 parent a5caefe commit 4538c16
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 22 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/linters-python.yml
Expand Up @@ -85,13 +85,13 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ inputs.python-version }}
requirements: ${{ inputs.requirements }}
command: pydocstyle ${{ inputs.pydocstyle-paths }}
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ inputs.python-version }}
Expand All @@ -103,13 +103,13 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ inputs.python-version }}
requirements: ${{ inputs.requirements }}
command: pycodestyle ${{ inputs.pycodestyle-paths }}
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ inputs.python-version }}
Expand All @@ -120,13 +120,13 @@ jobs:
if: ${{ inputs.black }}
runs-on: ubuntu-latest
steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ inputs.python-version }}
requirements: ${{ inputs.requirements }}
command: black --diff --check ${{ inputs.black-paths }}
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ inputs.python-version }}
Expand All @@ -139,13 +139,13 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ inputs.python-version }}
requirements: ${{ inputs.requirements }}
command: mypy ${{ inputs.mypy-paths }}
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ inputs.python-version }}
Expand All @@ -157,13 +157,13 @@ jobs:
if: ${{ inputs.pylint }}
runs-on: ubuntu-latest
steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ inputs.python-version }}
requirements: ${{ inputs.requirements }}
command: pylint --recursive y .
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ inputs.python-version }}
Expand All @@ -174,13 +174,13 @@ jobs:
if: ${{ inputs.rst }}
runs-on: ubuntu-latest
steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ inputs.python-version }}
requirements: ${{ inputs.requirements }}
command: rst-lint ${{ inputs.rst-paths }}
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ inputs.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-pytests.yml
Expand Up @@ -46,13 +46,13 @@ jobs:
PYTHON: ${{ matrix.python-version }}

steps:
- uses: fizyk/actions-reuse/.github/actions/pip@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pip@v1.6.0
if: ${{ inputs.pipenv == false }}
with:
python-version: ${{ matrix.python-version }}
requirements: ${{ inputs.requirements }}
command: pytest -v --cov --cov-report=xml ${{ inputs.pytest_opts }}
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.5.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v1.6.0
if: ${{ inputs.pipenv == true }}
with:
python-version: ${{ matrix.python-version }}
Expand Down
15 changes: 15 additions & 0 deletions Changelog.rst
Expand Up @@ -3,6 +3,21 @@ Changelog

.. towncrier release notes start
1.6.0 (2022-11-29)
==================

Features
--------

- Add `automerge-shared` shared workflow to re-usable workflows. (`#76 <https://https://github.com/fizyk/actions-reuse/issues/76>`_)


Misc
----

- `#74 <https://https://github.com/fizyk/actions-reuse/issues/74>`_, `#75 <https://https://github.com/fizyk/actions-reuse/issues/75>`_


1.5.2 (2022-11-25)
==================

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -11,7 +11,7 @@ pypi
jobs:
build:
uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v1.5.2
uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v1.6.0
Has optional parameter **publish** and optional secret **pypi_token**

Expand All @@ -32,7 +32,7 @@ linters-python
jobs:
lint:
uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v1.5.2
uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v1.6.0
Lints python code

Expand Down Expand Up @@ -112,7 +112,7 @@ tests-pytests
jobs:
tests:
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v1.5.2
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v1.6.0
Run pytest tests on python code

Expand Down Expand Up @@ -149,7 +149,7 @@ automerge-shared
jobs:
automerge:
uses: fizyk/actions-reuse/.github/workflows/automerge-shared.yml@v1.5.2
uses: fizyk/actions-reuse/.github/workflows/automerge-shared.yml@v1.6.0
Runs automerge for dependabot pull requests using:

Expand Down
1 change: 0 additions & 1 deletion newsfragments/74.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/75.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/76.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion tbump.toml
Expand Up @@ -2,7 +2,7 @@
# github_url = "https://github.com/<user or organization>/<project>/"

[version]
current = "1.5.2"
current = "1.6.0"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit 4538c16

Please sign in to comment.