Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Nov 14, 2020
1 parent 64fc46e commit 9454f57
Show file tree
Hide file tree
Showing 35 changed files with 100 additions and 76 deletions.
57 changes: 57 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,63 @@ History

.. towncrier release notes start
1.2.0 (2020-11-14)
==================

- BREAKING CHANGE: Replace url() function with path() (#645)

Features
--------

- Add support for django CMS 3.8 / Django 3.1 (#643)
- Update to modern tooling and port to github actions (#564)
- Add option to allow fallback language in post/category URLs (#546)
- Move post slug to top of post admin form (#567)
- Add blog post extensions (#569)
- Replace deprecated function calls (#571)
- Improve tag selection UX/UI (#614)
- Improve admin customization (#620)
- Improve documentation (#622)
- Add rtd config file and refactor test / docs dependencies (#624)
- Replace G+ metadata with Schema.org (#637)
- Update pre-commit checks to latest version (#639)


Bugfixes
--------

- Do not let site crash on menu if there is a namespace mismatch (#532)
- Improve setup documentation (#541)
- Fix GA on pull request (#575)
- Fix coveralls failure on pull request in GA (#577)
- Fix link in PR template (#581)
- Skip haystack index creation if aldryn-search is not installed but haystack is (#584)
- Skip towncrier on develop / master branch (#591)
- Fix missing template folders selection in plugins (#595)
- Clarify documentation regarding templates customization (#595)
- Fix extra migration when customizing BLOG_PLUGIN_TEMPLATE_FOLDERS (#597)
- Set default pytest configuration (#598)
- Add missing condition for (date_published) <li> on blog_meta template (#603)
- Fix python version declaration in tox (#606)
- Fix creating text plugin in wizard (#607)
- Split linting GA to its own file (#608)
- Doc improvements for usage with djangocms-page-meta (#613)
- Update linting (#618)
- Fix building docs (#632)


Improved Documentation
----------------------

- Improve documentation to enable social meta tags rendering (#613)


Misc
----

- #593


1.1.1 (2020-05-15)
==================

Expand Down
1 change: 0 additions & 1 deletion changes/532.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/541.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/546.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/564.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/567.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/569.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/571.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/575.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/577.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/581.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/584.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/591.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/593.misc

This file was deleted.

2 changes: 0 additions & 2 deletions changes/595.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/597.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/598.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/603.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/606.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/607.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/608.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/613.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/613.doc

This file was deleted.

1 change: 0 additions & 1 deletion changes/614.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/618.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/620.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/622.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/624.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/632.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/637.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/639.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/643.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/645.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion djangocms_blog/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Iacopo Spalletti"
__email__ = "[email protected]"
__version__ = "1.2.0a1"
__version__ = "1.2.0"

default_app_config = "djangocms_blog.apps.BlogAppConfig"
84 changes: 42 additions & 42 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 1.2.0a1
current_version = 1.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
Expand All @@ -13,11 +13,11 @@ message = Release {new_version}
[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
dev
a
b
rc
gamma

[bumpversion:file:djangocms_blog/__init__.py]

Expand All @@ -26,7 +26,7 @@ name = djangocms-blog
version = attr: djangocms_blog.__version__
url = https://github.com/nephila/djangocms-blog
project_urls =
Documentation = https://djangocms-blog.readthedocs.io/
Documentation = https://djangocms-blog.readthedocs.io/
author = Iacopo Spalletti
author_email = [email protected]
description = The blog application for django CMS
Expand All @@ -35,48 +35,48 @@ long_description_content_type = text/x-rst
license = BSD
license_file = LICENSE
classifiers =
License :: OSI Approved :: BSD License
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
License :: OSI Approved :: BSD License
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8

[options]
include_package_data = True
install_requires =
django-parler>=2.0
django-cms>=3.7
django-taggit>=1.0
django-filer>=1.4
pytz
django-taggit-templatetags
django-taggit-autosuggest
djangocms-text-ckeditor>=3.9
easy-thumbnails>=2.4.1
django-meta>=2.0
aldryn-apphooks-config>=0.5
djangocms-apphook-setup
django-sortedm2m
lxml
django-parler>=2.0
django-cms>=3.7
django-taggit>=1.0
django-filer>=1.4
pytz
django-taggit-templatetags
django-taggit-autosuggest
djangocms-text-ckeditor>=3.9
easy-thumbnails>=2.4.1
django-meta>=2.0
aldryn-apphooks-config>=0.5
djangocms-apphook-setup
django-sortedm2m
lxml
setup_requires =
setuptools
setuptools
packages = djangocms_blog
python_requires = >=3.5
test_suite = cms_helper.run
zip_safe = False
keywords =
djangocms-blog
blog
django
wordpress
multilingual
djangocms-blog
blog
django
wordpress
multilingual

[options.package_data]
* = *.txt, *.rst
Expand All @@ -86,7 +86,7 @@ djangocms_blog = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po
search = aldryn-search
taggit-helpers = django-taggit-helpers
docs =
django<3.1
django<3.1

[upload]
repository = https://upload.pypi.org/legacy/
Expand Down

0 comments on commit 9454f57

Please sign in to comment.