Skip to content

Commit

Permalink
Bump version: 0.2.5 → 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
soasme committed Sep 6, 2016
1 parent 9d2a22d commit 113cdfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:2.7-slim

MAINTAINER Lin Ju <[email protected]>

RUN pip install blackgate==0.2.5
RUN pip install blackgate==0.2.6

VOLUME /etc/blackgate.yml

Expand Down
2 changes: 1 addition & 1 deletion blackgate/http_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def options(self, *args, **kwargs):
def _fetch(self, *args, **kwargs):
headers = dict(self.request.headers.get_all())
headers.pop('Host', None)
headers['User-Agent'] = 'Blackgate/%s' % '0.2.5'
headers['User-Agent'] = 'Blackgate/%s' % '0.2.6'

path = re.sub(
self.proxy['request_path_regex'],
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.5
current_version = 0.2.6
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name='blackgate',
version='0.2.5',
version='0.2.6',
license='MIT',
description="A set of utilities to build API gateway.",
long_description=readme + '\n\n' + history,
Expand Down

0 comments on commit 113cdfa

Please sign in to comment.