Skip to content

Commit e36f662

Browse files
committed
Preparing release 0.37.0
1 parent aba445e commit e36f662

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Change Log for spellcheck-github-actions
22

3+
## 0.37.0, 2024-01-01, maintenance release, update not required
4+
5+
- Docker image updated to Python 3.12.3 slim via PR [#199](https://github.com/rojopolis/spellcheck-github-actions/pull/199) from Dependabot. [Release notes for Python 3.12.3](https://docs.python.org/release/3.12.3/whatsnew/changelog.html)
6+
7+
- Docker image updated to Python 3.12.2 slim via PR [#197](https://github.com/rojopolis/spellcheck-github-actions/pull/197) from Dependabot. [Release notes for Python 3.12.2](https://docs.python.org/release/3.12.2/whatsnew/changelog.html)
8+
39
## 0.36.0, 2024-02-06, feature release, update not required
410

511
- 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/)
612

7-
- 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)
13+
- Docker image updated to Python 3.12.1 slim via PR [#191](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)
814

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

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ This action uses [PySpelling][pyspelling] to check spelling in source files in t
3030
- [Extra Configuration for Markdown](#extra-configuration-for-markdown)
3131
- [Spellcheck Configuration File](#spellcheck-configuration-file)
3232
- [Predefined Name](#predefined-name)
33+
- [Specifying Number of Jobs for Parallel Processing](#specifying-number-of-jobs-for-parallel-processing)
3334
- [Specifying Language](#specifying-language)
3435
- [Checking For Bad Spelling](#checking-for-bad-spelling)
3536
- [Language Support](#language-support)
@@ -103,7 +104,7 @@ jobs:
103104
steps:
104105
# The checkout step
105106
- uses: actions/checkout@v3
106-
- uses: rojopolis/spellcheck-github-actions@0.36.0
107+
- uses: rojopolis/spellcheck-github-actions@0.37.0
107108
name: Spellcheck
108109
```
109110
@@ -113,7 +114,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy
113114

114115
### Using a Canonical Version
115116

116-
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.
117+
In the above example, the configuration is pointing to the exact version of `0.37.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
117118

118119
```yaml
119120
name: Spellcheck Action
@@ -201,7 +202,7 @@ jobs:
201202
steps:
202203
# The checkout step
203204
- uses: actions/checkout@v3
204-
- uses: rojopolis/spellcheck-github-actions@0.36.0
205+
- uses: rojopolis/spellcheck-github-actions@0.37.0
205206
name: Spellcheck
206207
with:
207208
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -229,7 +230,7 @@ jobs:
229230
steps:
230231
# The checkout step
231232
- uses: actions/checkout@v3
232-
- uses: rojopolis/spellcheck-github-actions@0.36.0
233+
- uses: rojopolis/spellcheck-github-actions@0.37.0
233234
name: Spellcheck
234235
with:
235236
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -316,7 +317,7 @@ jobs:
316317
runs-on: ubuntu-latest
317318
steps:
318319
- uses: actions/checkout@v3
319-
- uses: rojopolis/spellcheck-github-actions@0.36.0
320+
- uses: rojopolis/spellcheck-github-actions@0.37.0
320321
name: Spellcheck
321322
with:
322323
config_path: config/.spellcheck.yml # put path to configuration file here
@@ -516,7 +517,7 @@ jobs:
516517
runs-on: ubuntu-latest
517518
steps:
518519
- uses: actions/checkout@v3
519-
- uses: rojopolis/spellcheck-github-actions@0.36.0
520+
- uses: rojopolis/spellcheck-github-actions@0.37.0
520521
name: Spellcheck
521522
with:
522523
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -731,7 +732,7 @@ jobs:
731732
runs-on: ubuntu-latest
732733
steps:
733734
- uses: actions/checkout@v3
734-
- uses: rojopolis/spellcheck-github-actions@0.36.0
735+
- uses: rojopolis/spellcheck-github-actions@0.37.0
735736
name: Spellcheck
736737
```
737738

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ branding:
2323
icon: type
2424
runs:
2525
using: docker
26-
image: 'docker://jonasbn/github-action-spellcheck:0.36.0'
26+
image: 'docker://jonasbn/github-action-spellcheck:0.37.0'

0 commit comments

Comments
 (0)