Skip to content

Commit

Permalink
Merge branch 'main' into hacky-fix-relative-links-in-feed
Browse files Browse the repository at this point in the history
  • Loading branch information
brabster authored Jun 12, 2024
2 parents 8468e94 + 7e51e12 commit d424d11
Show file tree
Hide file tree
Showing 29 changed files with 464 additions and 315 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/lint-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
8 changes: 8 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> <27856297+dependabot-preview[bot]@users.noreply.github.com>

Julien M. <[email protected]>
Julien M. <[email protected]> <[email protected]>

Y.D.X. <[email protected]>
Y.D.X. <[email protected]> <[email protected]>
34 changes: 22 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: "node_modules|migrations|.venv|.direnv|tests/dev/|tests/fixtures/"
exclude: ".venv|.direnv|tests/dev/|tests/fixtures/"
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-added-large-files
args: ["--maxkb=500"]
args:
- --maxkb=500
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-json
- id: check-toml
- id: check-yaml
args: [--unsafe]
args:
- --unsafe
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: fix-encoding-pragma
args: [--remove]
args:
- --remove
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
args:
- --markdown-linebreak-ext=md

- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
Expand All @@ -33,32 +35,40 @@ repos:
hooks:
- id: pyupgrade
args:
- "--py38-plus"
- "--py310-plus"

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.4.7"
hooks:
- id: ruff
args: ["--fix-only", "--target-version=py38"]
args:
- --fix-only
- --target-version=py310

- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
args:
- --profile
- black
- --filter-files

- repo: https://github.com/psf/black
rev: 24.4.2
hooks:
- id: black
args: ["--target-version=py38"]
args:
- --target-version=py310

- repo: https://github.com/pycqa/flake8
rev: 7.0.0
hooks:
- id: flake8
language: python
args: ["--config=setup.cfg", "--select=E9,F63,F7,F82"]
args:
- --config=setup.cfg
- --select=E9,F63,F7,F82

ci:
autofix_prs: true
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-->

## 1.13.0 - 2024-06-10

### Bugs fixes 🐛

### Features and enhancements 🎉

* feature: allow customize output filenames by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/278>
* feature: allow multiple instances by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/280>
* chore: set minimal python version to 3.10 by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/286>
* chore(deps): set minimum Mkdocs version to 1.4 by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/283>
* Refacto: modernize config date from meta by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/285>

### Tooling 🔧

* ci: use trusted publisher and remove token by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/271>
* tooling: add SonarCloud config by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/279>

### Documentation 📖

* Documentation: improve guide how to make JSON feed discoverable by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/272>
* Docs: order settings aZ and minor improvements by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/281>
* docs: complete JSON schema with latest features by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/282>
* docs: fix internal links by @Guts in <https://github.com/Guts/mkdocs-rss-plugin/pull/284>

----

## 1.12.2 - 2024-04-30

### Bugs fixes 🐛
Expand Down
Loading

0 comments on commit d424d11

Please sign in to comment.