Skip to content

Commit 1eedf5e

Browse files
committed
Version 1.1.1
1 parent 5288d31 commit 1eedf5e

File tree

2 files changed

+28
-23
lines changed

2 files changed

+28
-23
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
1.1.1 (2020-06-13)
5+
------------------
6+
* Add Django 3.0 support. Drop Python 3.5 support.
7+
* Add Wagtail 2.9 support.
8+
* Show authorship on entry page without image.
9+
* Fix duplicate pages on sitemap.
10+
411
1.1.0 (2020-03-16)
512
------------------
613
* Updated blog model to be extensible

puput/__init__.py

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,28 @@
1-
__author__ = 'Marc Tudurí'
2-
__email__ = '[email protected]'
3-
__version__ = '1.1.0'
1+
__author__ = "Marc Tudurí"
2+
__email__ = "[email protected]"
3+
__version__ = "1.1.1"
44

55
PUPUT_APPS = (
66
# Wagtail apps
7-
'wagtail.core',
8-
'wagtail.admin',
9-
'wagtail.documents',
10-
'wagtail.snippets',
11-
'wagtail.users',
12-
'wagtail.images',
13-
'wagtail.embeds',
14-
'wagtail.search',
15-
'wagtail.sites',
16-
'wagtail.contrib.redirects',
17-
'wagtail.contrib.forms',
18-
'wagtail.contrib.sitemaps',
19-
'wagtail.contrib.routable_page',
20-
7+
"wagtail.core",
8+
"wagtail.admin",
9+
"wagtail.documents",
10+
"wagtail.snippets",
11+
"wagtail.users",
12+
"wagtail.images",
13+
"wagtail.embeds",
14+
"wagtail.search",
15+
"wagtail.sites",
16+
"wagtail.contrib.redirects",
17+
"wagtail.contrib.forms",
18+
"wagtail.contrib.sitemaps",
19+
"wagtail.contrib.routable_page",
2120
# Third-party apps
22-
'taggit',
23-
'modelcluster',
24-
'django_social_share',
25-
21+
"taggit",
22+
"modelcluster",
23+
"django_social_share",
2624
# Puput apps
27-
'puput',
25+
"puput",
2826
)
2927

30-
default_app_config = 'puput.apps.PuputAppConfig'
28+
default_app_config = "puput.apps.PuputAppConfig"

0 commit comments

Comments
 (0)