Skip to content

Commit

Permalink
Prepare 0.7.0-rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Apr 28, 2021
1 parent 72a6f12 commit 64f8eea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# 0.7.0 - UNRELEASED
# 0.7.0-rc1 - 28th April 2021

- Switched to using [EasyMDE](https://github.com/Ionaru/easy-markdown-editor) - @StefanUlbrich
- Added support for extensions config via `WAGTAILMARKDOWN_EXTENSIONS_CONFIG` - @StefanUlbrich
- Removed deprecations
- Added [pre-commit](https://pre-commit.com/) support
- Switched to [SemVer](https://semver.org/) and GitHub Actions
- Updated [bleach](https://github.com/mozilla/bleach) minimum version to 3.3.0

# 0.6 - 12th February 2020

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def get_git_revision_hash():
try:
git_hash = subprocess.check_output(["git", "rev-parse", "HEAD"])
except subprocess.CalledProcessError:
return 'main'
return "main"
else:
return git_hash.decode("ascii").splitlines()[0]

Expand All @@ -29,9 +29,9 @@ def get_git_revision_hash():


INSTALL_REQUIRES = [
'Markdown>=3,<4',
'bleach>=3.3.0,<4',
'Wagtail>=2.0',
"Markdown>=3,<4",
"bleach>=3.3.0,<4",
"Wagtail>=2.0",
]


Expand Down Expand Up @@ -59,7 +59,7 @@ def get_git_revision_hash():

setup(
name="wagtail-markdown",
version="0.7.0-alpha",
version="0.7.0-rc1",
description="Markdown support for Wagtail",
long_description="Provides Markdown page field and streamfield block for "
"Wagtail. More info: {}".format(README),
Expand Down

0 comments on commit 64f8eea

Please sign in to comment.