Skip to content

Commit

Permalink
Merge branch 'release/0.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
stumpylog committed Jun 3, 2024
2 parents 0c9e57e + e79d2b8 commit f39c67c
Show file tree
Hide file tree
Showing 6 changed files with 100 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repos:
exclude: "(^Pipfile\\.lock$)"
# Python hooks
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.3.7'
rev: 'v0.4.5'
hooks:
- id: ruff
- repo: https://github.com/psf/black-pre-commit-mirror
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.0] - 2024-06-03

### Changed

- Bump ruff from 0.3.7 to 0.4.3 (by @dependabot in [#84](https://github.com/stumpylog/image-cleaner-action/pull/84))
- Bump black from 24.4.0 to 24.4.2 (by @dependabot in [#81](https://github.com/stumpylog/image-cleaner-action/pull/81))
- Bump mypy from 1.9.0 to 1.10.0 (by @dependabot in [#82](https://github.com/stumpylog/image-cleaner-action/pull/82))
- Bump pre-commit from 3.7.0 to 3.7.1 (by @dependabot in [#86](https://github.com/stumpylog/image-cleaner-action/pull/86))
- Bump ruff from 0.4.3 to 0.4.5 (by @dependabot in [#87](https://github.com/stumpylog/image-cleaner-action/pull/87))
- Bump ruff from 0.4.5 to 0.4.7 (by @dependabot in [#88](https://github.com/stumpylog/image-cleaner-action/pull/88))
- Bumps actions/setup-python from v4 to v5

## [0.6.0] - 2024-04-15

### Changed
Expand Down
168 changes: 84 additions & 84 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ephemeral/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
steps:
-
name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.11'
Expand Down
2 changes: 1 addition & 1 deletion untagged/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
steps:
-
name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.11'
Expand Down
2 changes: 1 addition & 1 deletion version/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from typing import Final

_version: Final[tuple[int, int, int]] = (0, 6, 0)
_version: Final[tuple[int, int, int]] = (0, 7, 0)

version = ".".join(_version)

0 comments on commit f39c67c

Please sign in to comment.