Skip to content

Commit

Permalink
Metadata bumps for 1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-shawley committed Jan 9, 2018
1 parent 6ba8b52 commit b30c04a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
master_doc = 'index'
project = 'sprockets.clients.memcached'
copyright = '2014-2018, AWeber Communications'
version = '1.0.1'
release = '1.0'
version = '1.1.0'
release = '1.1'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'sphinx_rtd_theme'
Expand Down
2 changes: 1 addition & 1 deletion docs/history.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Version History
---------------
- Next Release
- 1.1.0 [2018-01-09]

- Remove usage of python3-memcached since python-memcached supports
both Python2 & Python3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read_requirements(name):

setuptools.setup(
name='sprockets.clients.memcached',
version='1.0.0',
version='1.1.0',
description=('Memcached client wrapper that is configured via '
'environment variables'),
long_description=codecs.open('README.rst', encoding='utf-8').read(),
Expand Down
2 changes: 1 addition & 1 deletion sprockets/clients/memcached/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import memcache

version_info = (0, 0, 0)
version_info = (1, 1, 0)
__version__ = '.'.join(str(v) for v in version_info)

LOGGER = logging.getLogger(__name__)
Expand Down

0 comments on commit b30c04a

Please sign in to comment.