Skip to content

Commit

Permalink
Merge branch 'release/0.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
stumpylog committed Apr 15, 2024
2 parents 9255a1b + 30fb6ed commit 0c9e57e
Show file tree
Hide file tree
Showing 7 changed files with 130 additions and 121 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4
-
name: Check files
uses: pre-commit/[email protected].0
uses: pre-commit/[email protected].1
create-release:
name: Release
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ repos:
exclude: "(^Pipfile\\.lock$)"
# Python hooks
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.2.1'
rev: 'v0.3.7'
hooks:
- id: ruff
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.1.1
rev: 24.4.0
hooks:
- id: black
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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.6.0] - 2024-04-15

### Changed

- Bump pre-commit from 3.6.2 to 3.7.0 (by @dependabot in #76)
- Bump ruff from 0.3.3 to 0.3.5 (by @dependabot in #77)
- Bump black from 24.3.0 to 24.4.0 (by @dependabot in #78)
- Bump ruff from 0.3.5 to 0.3.7 (by @dependabot in #79)

## [0.5.0] - 2024-02-06

### Changed
Expand Down
230 changes: 115 additions & 115 deletions Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ephemeral/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
-
name: Clean the images
shell: bash
id: get-square
id: ephemeral-image-clean
run: |
cd ${{ github.action_path }}/..
pipenv --quiet \
Expand Down
2 changes: 1 addition & 1 deletion untagged/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
-
name: Clean the images
shell: bash
id: get-square
id: untagged-image-clean
run: |
cd ${{ github.action_path }}/..
pipenv --quiet \
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, 4, 0)
_version: Final[tuple[int, int, int]] = (0, 6, 0)

version = ".".join(_version)

0 comments on commit 0c9e57e

Please sign in to comment.