Skip to content

Commit

Permalink
Prep for 8.0.1 release (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Sep 28, 2020
1 parent 3fda734 commit 5c3e9d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"selector-descendant-combinator-no-non-space": null,
"selector-type-no-unknown": [true, {"ignore": ["custom-elements"]}],
"string-quotes": "double",
"unit-whitelist": ["px", "em", "deg", "ms", "%", "mm", "vh", "dppx", "s"],
"unit-allowed-list": ["px", "em", "deg", "ms", "%", "mm", "vh", "dppx", "s"],
"value-keyword-case": "lower",
"value-no-vendor-prefix": true
}
Expand Down
4 changes: 4 additions & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 8.0.1

- **FIX**: Fix issue with `pymdownx-inline` an Pygments 2.7+.

## 8.0

Please see [Release Notes](./releases/8.0.md#8.0) for details on upgrading to 8.0.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ theme:
text: Roboto
code: Roboto Mono
features:
- tabs
- navigation.tabs

nav:
- PyMdown Extensions: index.md
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ theme:
text: Roboto
code: Roboto Mono
features:
- tabs
- navigation.tabs

nav:
- PyMdown Extensions: index.md
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(8, 0, 0, "final")
__version_info__ = Version(8, 0, 1, "final")
__version__ = __version_info__._get_canonical()

0 comments on commit 5c3e9d7

Please sign in to comment.