Skip to content

Commit

Permalink
Merge pull request #243 from untergeek/2.1.1
Browse files Browse the repository at this point in the history
Update version to 2.1.1
  • Loading branch information
untergeek committed Dec 30, 2014
2 parents 5898003 + 00a2c42 commit 059b99e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Changelog
=========

2.1.1 (30 December 2014)

**Bug fixes**

* Renamed unnecessarily redundant ``--replicas`` to ``--count`` in args for ``curator_script.py``

2.1.0 (30 December 2014)
-------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1
2 changes: 1 addition & 1 deletion curator/curator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import elasticsearch

__version__ = '2.1.0'
__version__ = '2.1.1'

logger = logging.getLogger(__name__)

Expand Down
4 changes: 2 additions & 2 deletions curator/curator_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class NullHandler(Handler):
def emit(self, record):
pass

__version__ = '2.1.0'
__version__ = '2.1.1'

# Elasticsearch versions supported
version_max = (2, 0, 0)
Expand Down Expand Up @@ -147,7 +147,7 @@ def make_parser():
parser_replicas.set_defaults(func=curator.replicas)
add_common_args(parser_replicas)
parser_replicas.add_argument('--older-than', required=True, help='Change replica count for indices older than n TIME_UNITs', type=int)
parser_replicas.add_argument('--replicas', required=True, help='Number of replicas the indices should have', type=int, default=1)
parser_replicas.add_argument('--count', dest='replicas', required=True, help='Number of replicas the indices should have', type=int, default=1)

# Show indices
parser_show = subparsers.add_parser('show', help='Show indices or snapshots')
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '2.1'
# The full version, including alpha/beta/rc tags.
release = '2.1.0'
release = '2.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 059b99e

Please sign in to comment.