Skip to content

Commit

Permalink
Release notes preparred and documentation updated to reflect upcoming…
Browse files Browse the repository at this point in the history
… release
  • Loading branch information
jonasbn committed Dec 29, 2022
1 parent 7a37f75 commit 51817b6
Show file tree
Hide file tree
Showing 4 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.29.0, 2022-12-29, maintenance release, update not required

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

- [lxml](https://pypi.org/project/lxml/) bumped to version 4.9.1 from 4.9.1 to get the build to work, without jumping through too many hoops. We prefer relying on wheel instead of building from source, since `lxml` can become quite a time sink

## 0.28.0, 2022-11-16, maintenance release, update not required

- Docker image updated to Python 3.10.8 slim via PR [#129](https://github.com/rojopolis/spellcheck-github-actions/pull/129) from @snyk-bot. [Release notes for Python 3.10.8](https://docs.python.org/release/3.10.8/whatsnew/changelog.html)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@master
- uses: rojopolis/spellcheck-github-actions@0.28.0
- uses: rojopolis/spellcheck-github-actions@0.29.0
name: Spellcheck
```
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@master
- uses: rojopolis/spellcheck-github-actions@0.28.0
- uses: rojopolis/spellcheck-github-actions@0.29.0
name: Spellcheck
with:
source_files: README.md CHANGELOG.md notes/Notes.md
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
steps:
# The checkout step
- uses: actions/checkout@master
- uses: rojopolis/spellcheck-github-actions@0.28.0
- uses: rojopolis/spellcheck-github-actions@0.29.0
name: Spellcheck
with:
source_files: README.md CHANGELOG.md notes/Notes.md
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: rojopolis/spellcheck-github-actions@0.28.0
- uses: rojopolis/spellcheck-github-actions@0.29.0
name: Spellcheck
with:
config_path: config/.spellcheck.yml # put path to configuration file here
Expand Down Expand Up @@ -570,7 +570,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: rojopolis/spellcheck-github-actions@0.28.0
- uses: rojopolis/spellcheck-github-actions@0.29.0
name: Spellcheck
```

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ branding:
icon: type
runs:
using: docker
image: 'docker://jonasbn/github-action-spellcheck:0.28.0'
image: 'docker://jonasbn/github-action-spellcheck:0.29.0'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ backrefs==5.0.1
beautifulsoup4==4.9.3
bracex==2.1.1
html5lib==1.1
lxml==4.9.1
lxml==4.9.2
Markdown==3.3.4
pymdown-extensions==8.2
pyspelling==2.8.1
Expand Down

0 comments on commit 51817b6

Please sign in to comment.