Skip to content

Commit f546b03

Browse files
authored
Release 1.0 (#22)
* Update test matrix * Update test site * Bump version
1 parent d30952c commit f546b03

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ matrix:
1919
python: 3.6
2020
- env: TOXENV=py36-dj111-wt113
2121
python: 3.6
22-
- env: TOXENV=py36-dj111-wt2b
22+
- env: TOXENV=py36-dj111-wt2
2323
python: 3.6
24-
- env: TOXENV=py36-dj2-wt2b
24+
- env: TOXENV=py36-dj2-wt2
2525
python: 3.6
2626
install:
2727
- pip install tox coveralls

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Changelog
33

44
Unreleased
55
------------------
6+
...
7+
8+
1.0 (2018-03-07)
9+
------------------
610
#. Add Wagtail 2.0 compatibility.
711
#. Ensure captcha field is properly removed from submission data. (issue #11)
812
#. Allow subclassing of the form builder. (issue #7)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
'isort==4.2.5',
2424

2525
# For test site
26-
'wagtail==1.12',
26+
'wagtail==2.0',
2727
]
2828

2929
# Documentation dependencies

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ skipsdist = True
88
usedevelop = True
99
envlist =
1010
py{27,34,35,36}-dj{111}-wt{112,113}
11-
py{34,35,36}-dj{111,2}-wt{2b}
11+
py{34,35,36}-dj{111,2}-wt{2}
1212

1313
[testenv]
1414
install_command = pip install -e ".[testing]" -U {opts} {packages}
@@ -26,7 +26,7 @@ deps =
2626
dj2: Django>=2.0,<2.1
2727
wt112: wagtail>=1.12,<1.13
2828
wt113: wagtail>=1.13,<1.14
29-
wt2b: wagtail==2.0b1
29+
wt2: wagtail>=2.0,<2.1
3030

3131
commands =
3232
make lint

wagtailcaptcha/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2'
1+
__version__ = '1.0'

0 commit comments

Comments
 (0)