Skip to content

Commit

Permalink
Release 1.0 (#22)
Browse files Browse the repository at this point in the history
* Update test matrix
* Update test site
* Bump version
  • Loading branch information
loicteixeira authored Mar 6, 2018
1 parent d30952c commit f546b03
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ matrix:
python: 3.6
- env: TOXENV=py36-dj111-wt113
python: 3.6
- env: TOXENV=py36-dj111-wt2b
- env: TOXENV=py36-dj111-wt2
python: 3.6
- env: TOXENV=py36-dj2-wt2b
- env: TOXENV=py36-dj2-wt2
python: 3.6
install:
- pip install tox coveralls
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Changelog

Unreleased
------------------
...

1.0 (2018-03-07)
------------------
#. Add Wagtail 2.0 compatibility.
#. Ensure captcha field is properly removed from submission data. (issue #11)
#. Allow subclassing of the form builder. (issue #7)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'isort==4.2.5',

# For test site
'wagtail==1.12',
'wagtail==2.0',
]

# Documentation dependencies
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ skipsdist = True
usedevelop = True
envlist =
py{27,34,35,36}-dj{111}-wt{112,113}
py{34,35,36}-dj{111,2}-wt{2b}
py{34,35,36}-dj{111,2}-wt{2}

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

commands =
make lint
Expand Down
2 changes: 1 addition & 1 deletion wagtailcaptcha/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2'
__version__ = '1.0'

0 comments on commit f546b03

Please sign in to comment.