From d693edcec7078dde1eec80c67b55fc607522a4e5 Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Sun, 12 Feb 2017 11:51:29 +0100 Subject: [PATCH] increment API version --- ibt2.py | 2 +- tests/ibt2_tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ibt2.py b/ibt2.py index 2c1a07f..570b5e8 100755 --- a/ibt2.py +++ b/ibt2.py @@ -32,7 +32,7 @@ from tornado import gen, escape import utils import monco -API_VERSION = '1.0' +API_VERSION = '1.1' class BaseException(Exception): diff --git a/tests/ibt2_tests.py b/tests/ibt2_tests.py index 2c0ec30..860fa15 100755 --- a/tests/ibt2_tests.py +++ b/tests/ibt2_tests.py @@ -19,7 +19,7 @@ import unittest import requests import monco -BASE_URL = 'http://localhost:3000/v1.0/' +BASE_URL = 'http://localhost:3000/v1.1/' DB_NAME = 'ibt2_test' def dictInDict(d, dContainer):