diff options
| -rw-r--r-- | .appveyor.yml | 2 | ||||
| -rw-r--r-- | .travis.yml | 6 | ||||
| -rw-r--r-- | gitdb/__init__.py | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index bfc5eff..93e02fa 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -38,7 +38,7 @@ install: git config --global user.name "Travis Runner" ## Install any dev-requirements (FIXME: remove on release) - - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.0.dev1 + - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.1.dev0 - pip install -r requirements.txt build: false diff --git a/.travis.yml b/.travis.yml index 2f8e407..0d28ee6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,11 @@ git: depth: 1000 install: - pip install coveralls - + ## Install any dev-requirements (FIXME: remove on release) - - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.0.dev1 + - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.1.dev0 - pip install -r requirements.txt -script: +script: - ulimit -n 48 - ulimit -n - nosetests -v --with-coverage diff --git a/gitdb/__init__.py b/gitdb/__init__.py index 33229ce..010faa3 100644 --- a/gitdb/__init__.py +++ b/gitdb/__init__.py @@ -10,7 +10,7 @@ import os __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (2, 1, 0, 'dev1') +version_info = (2, 1, 1, 'dev0') __version__ = '.'.join(str(i) for i in version_info) |
