Skip to content

Commit

Permalink
Update changelog and require Markdown >= 3.6 (#2358)
Browse files Browse the repository at this point in the history
* Update changelog and require Markdown >= 3.6

* Use codecov token

* Use codecov v4
  • Loading branch information
facelessuser committed Apr 18, 2024
1 parent 48e32b6 commit d238e0c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,12 @@ jobs:
python -m tox
- name: Upload Results
if: success()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: unittests
name: ${{ matrix.platform }}-${{ matrix.tox-env }}
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: false

lint:
Expand Down
6 changes: 6 additions & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 10.8

- **NEW**: Require Python Markdown 3.6+.
- **FIX**: Fix some test cases.
- **FIX**: Fix warnings due to recent changes in Python Markdown.

## 10.7.1

- **FIX**: SmartSymbols: Ensure symbols are properly translated in table of content tokens.
Expand Down
2 changes: 1 addition & 1 deletion pymdownx/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,5 +185,5 @@ def parse_version(ver, pre=False):
return Version(major, minor, micro, release, pre, post, dev)


__version_info__ = Version(10, 7, 1, "final")
__version_info__ = Version(10, 8, 0, "final")
__version__ = __version_info__._get_canonical()
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dynamic = [
]

dependencies = [
"Markdown>=3.5",
"Markdown>=3.6",
"pyyaml"
]

Expand Down

0 comments on commit d238e0c

Please sign in to comment.