From e0485de7e684d6d20979789585e528b094039c73 Mon Sep 17 00:00:00 2001 From: Romary Dupuis Date: Fri, 5 Jan 2018 00:24:51 +0100 Subject: [PATCH 1/2] Update Travis configuration --- .travis.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1cd5312..671f6e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,17 @@ sudo: false language: python python: - - "2.6" - "2.7" - - "3.2" - - "3.3" - - "3.4" - - "3.5" - "3.6" -install: pip install tox-travis +install: + - pip install tox-travis + - pip install coveralls script: tox +after_script: coveralls +notifications: + email: + recipients: + - romary@me.com + on_success: change + on_failure: always From 8d28b51cac00e552c15f528fe25d3fdda75e2ea9 Mon Sep 17 00:00:00 2001 From: Romary Dupuis Date: Fri, 5 Jan 2018 00:25:10 +0100 Subject: [PATCH 2/2] Version update --- jsonrepo/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonrepo/__init__.py b/jsonrepo/__init__.py index e2c956f..2968567 100644 --- a/jsonrepo/__init__.py +++ b/jsonrepo/__init__.py @@ -5,5 +5,5 @@ Copyright (C) 2017 Romary Dupuis """ -__version__ = '0.1.0' +__version__ = '0.1.1' __all__ = ['repository', 'mixin', 'record']