Skip to content

Commit

Permalink
Preparing release 0.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Feb 6, 2024
1 parent dc0ebdb commit 28acf6b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log for spellcheck-github-actions

## 0.36.0, 2024-02-06, feature release, update not required

- With version 2.10 of **PySpelling** the action now supports the configuration of running jobs in parallel, see the [documentation for PySpelling](https://facelessuser.github.io/pyspelling/configuration/)

- Docker image updated to Python 3.12.1 slim via PR [#177](https://github.com/rojopolis/spellcheck-github-actions/pull/191) from Dependabot. [Release notes for Python 3.12.1](https://docs.python.org/release/3.12.1/whatsnew/changelog.html)

## 0.35.0, 2023-11-16, maintenance release, update not required

- Docker image updated to Python 3.12.0 slim via PR [#177](https://github.com/rojopolis/spellcheck-github-actions/pull/177) from Snyk. [Release notes for Python 3.12.0](https://docs.python.org/release/3.12.0/whatsnew/changelog.html)
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.35.0
- uses: rojopolis/spellcheck-github-actions@0.36.0
name: Spellcheck
```
Expand All @@ -113,7 +113,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy

### Using a Canonical Version

In the above example, the configuration is pointing to the exact version of `0.35.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
In the above example, the configuration is pointing to the exact version of `0.36.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.

```yaml
name: Spellcheck Action
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.35.0
- uses: rojopolis/spellcheck-github-actions@0.36.0
name: Spellcheck
with:
source_files: README.md CHANGELOG.md notes/Notes.md
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.35.0
- uses: rojopolis/spellcheck-github-actions@0.36.0
name: Spellcheck
with:
source_files: README.md CHANGELOG.md notes/Notes.md
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.35.0
- uses: rojopolis/spellcheck-github-actions@0.36.0
name: Spellcheck
with:
config_path: config/.spellcheck.yml # put path to configuration file here
Expand Down Expand Up @@ -482,7 +482,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.35.0
- uses: rojopolis/spellcheck-github-actions@0.36.0
name: Spellcheck
with:
config_path: .github/spellcheck.yml # <--- put path to configuration file here
Expand Down Expand Up @@ -697,7 +697,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.35.0
- uses: rojopolis/spellcheck-github-actions@0.36.0
name: Spellcheck
```

Expand Down

0 comments on commit 28acf6b

Please sign in to comment.