Skip to content
This repository was archived by the owner on May 27, 2019. It is now read-only.

Commit 4ed1d43

Browse files
author
Janneke Janssen
committed
Bump version and typo fix
1 parent 4ee78f2 commit 4ed1d43

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

CHANGELOG.rst

+12-7
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,47 @@
22
CHANGELOG
33
=========
44

5-
0.3.0 (2016.10.28)
5+
0.4.0 (16-08-2017)
6+
==================
7+
+ Dropped support for Wagtail 1.6, 1.7
8+
+ Added support for Wagtail 1.9, 1.10 and 1.11
9+
10+
0.3.0 (28-10-2016)
611
==================
712
+ Added dimensions when returning the attached Twitter Image
813
+ Fixes Facebook support: initially developed on `2.1` while the GraphAPI assumes `2.8`.
914
+ Added Facebook field configuration
1015
+ Added Twitter options via default config
1116

12-
0.2.0 (2016.10.06)
17+
0.2.0 (06-10-2016)
1318
==================
1419
+ Added Facebook support
1520
+ Added ability to mix all the feeds; just leave feedconfig empty in `SocialFeedPage` or `SocialFeedBlock`.
1621
+ Made all returned data avaiable in `FeedItem` objects, even if it is not stored explicitly.
1722

18-
0.1.0 (2016.09.27)
23+
0.1.0 (27-09-2016)
1924
==================
2025
+ Fixed PyPI long_description format error
2126
+ Fixed value_for_form error in FeedChooserBlock
2227

23-
0.1.dev4 (2016.09.27)
28+
0.1.dev4 (27-09-2016)
2429
=====================
2530
+ Made looping over multiple result pages more DRY
2631
+ Improved moderate page title
2732
+ Fixed AttributeError in FeedChooserBlock.value_for_form
2833

29-
0.1.dev3 (2016.09.11)
34+
0.1.dev3 (11-09-2016)
3035
=====================
3136
+ Updated license model to BSD
3237

33-
0.1.dev2 (2016.09.04)
38+
0.1.dev2 (04-09-2016)
3439
=====================
3540
+ Added block type 'SocialFeedBlock'
3641
+ Added SocialFeedModerateMenu which live detects configuration changes
3742
+ Added FeedItem to consolidate the item/post structure
3843
+ Added search functionality to the Feed objects
3944
+ Dropped Wagtail 1.5 support in favour of using the IntegerBlock
4045

41-
0.1.dev1 (2016.09.01)
46+
0.1.dev1 (01-09-2016)
4247
=====================
4348
+ First implementation

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.0
2+
current_version = 0.4.0
33
commit = False
44
tag = False
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
setup(
4343
name='wagtailsocialfeed',
44-
version='0.3.0',
44+
version='0.4.0',
4545
description="A Wagtail module that provides pages and content blocks to show social media feeds", # NOQA
4646
long_description=readme + '\n\n' + changelog,
4747
author="Tim Leguijt",

tests/test_blocks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Tests for `wagtailsocialfeed.blocks`.
66
7-
In Wagtail 1.8 Function accepting only one parameter and that's why its raising TypeError
7+
In Wagtail 1.8 the get_context accepts only one parameter and that's why its raising TypeError.
88
In Combination of Django 1.11 and Wagtail 1.9, `ImportError` Exception is occurring in wagtailimage.
99
1010
from django.forms.widgets import flatatt

wagtailsocialfeed/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.0'
1+
__version__ = '0.4.0'

0 commit comments

Comments
 (0)