Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Dec 21, 2020
1 parent 1d6d553 commit 9184de4
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 13 deletions.
12 changes: 9 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@
History
*******

0.8.2 (unreleased)
.. towncrier release notes start
1.0.0 (2020-12-21)
==================

* Nothing yet
Features
--------

- Add support for django-app-enabler (#63)
- Update tooling and drop Python 2 / Django < 2.2 compatibility (#10208)

0.8.1 (2020-05-02)
==================

* Relicense under BSD license
* Enable django CMS 3.7.2 on python 3

0.8.0 (2020-01-12)
==================
Expand Down
13 changes: 8 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ Supported django CMS versions:
.. note:: djangocms-page-sitemap 0.7 dropped compatibility with django CMS < 3.6. 0.6.x releases will be made if necessary after 0.6 release.


********
Features
--------
********

* Support for changefreq and priority customisation per-page
* Option to exclude a page from the Sitemap
Expand All @@ -33,8 +34,9 @@ Features
* Available on Divio Cloud


**********
Quickstart
----------
**********

* Install djangocms-page-sitemap::

Expand Down Expand Up @@ -114,8 +116,9 @@ Fully using this package will require some changes that cannot be modified by ``
Check documentation above for details.
**********
Usage
-----
**********
After installing as above, you will be able to tune the sitemap setting for each page.
Expand All @@ -131,7 +134,7 @@ For each page you will be able to set the following flags / values:
* Provide any additional robots meta tag values
page_robots options
-------------------
===================
``page_robots`` meta tag accepts the following parameters:
Expand All @@ -140,7 +143,7 @@ page_robots options
* ``site``: the current site id (default: current site).
Settings
--------
===================
* PAGE_SITEMAP_CHANGEFREQ_LIST: List of frequency changes
* PAGE_SITEMAP_DEFAULT_CHANGEFREQ: Default changefrequency (default: django CMS value -monthly-)
Expand Down
Empty file added changes/.directory
Empty file.
1 change: 0 additions & 1 deletion changes/10208.feature

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion djangocms_page_sitemap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.8.2.dev1"
__version__ = "1.0.0"
__author__ = "Iacopo Spalletti <[email protected]>"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ target-version = ["py36"]
include = 'djangocms_page_sitemap/*py'

[tool.towncrier]
package = "djangocms-page-sitemap"
package = "djangocms_page_sitemap"
directory = "changes"
filename = "HISTORY.rst"
title_format = "{version} ({project_date})"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.2.dev1
current_version = 1.0.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
Expand Down

0 comments on commit 9184de4

Please sign in to comment.