diff --git a/.grablib.lock b/.grablib.lock index 5344ba22..79e265cf 100644 --- a/.grablib.lock +++ b/.grablib.lock @@ -1 +1 @@ -a451e4d39b8d7ef62d380d07742b782f https://raw.githubusercontent.com/livereload/livereload-js/v2.2.1/dist/livereload.js livereload.js \ No newline at end of file +a451e4d39b8d7ef62d380d07742b782f https://raw.githubusercontent.com/livereload/livereload-js/v2.2.1/dist/livereload.js livereload.js diff --git a/.travis.yml b/.travis.yml index bd344c34..6e9fef66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,7 @@ install: script: - make lint - make test +- make check_tag_version #- make docs after_success: diff --git a/HISTORY.rst b/HISTORY.rst index 5582c667..aff06c93 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ------- +0.1.2 (2017-01-11) +------------------ +* move to ``grablib`` for downloading ``livereload.js`` +* update aiohttp-session from 0.7.1 to 0.8.0 (#9) +* update aiopg from 0.12.0 to 0.13.0 (#11) +* update aiohttp-jinja2 from 0.8.0 to 0.13.0 (#12) +* fix formatting and typos in numerous commends and start's README +* fix template variable in ``requirements.txt`` +* check tag matches ``version.VERSION`` before a release + 0.1.1 (2017-01-06) ------------------ * fix template variables so ``settings.yml`` include db connection settings and ``requirements.txt`` is correct diff --git a/Makefile b/Makefile index c9810a26..ceb59add 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,12 @@ install: pip install -r tests/requirements.txt grablib +.PHONY: check_tag_version +check_tag_version: + python -c "import sys, os; \ + from aiohttp_devtools.version import VERSION; \ + os.getenv('TRAVIS_TAG') not in (None, '', str(VERSION)) and sys.exit(1)" + .PHONY: isort isort: isort -rc -w 120 -sg */template/* aiohttp_devtools diff --git a/aiohttp_devtools/version.py b/aiohttp_devtools/version.py index 29724194..60a2afad 100644 --- a/aiohttp_devtools/version.py +++ b/aiohttp_devtools/version.py @@ -2,4 +2,4 @@ __all__ = ['VERSION'] -VERSION = StrictVersion('0.1.1') +VERSION = StrictVersion('0.1.2')