Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release notes preparred and documentation updated to reflect upcoming release #140

Merged
merged 1 commit into from Dec 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -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
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
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
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