Skip to content

Commit

Permalink
Merge pull request #93 from untergeek/1.1.0
Browse files Browse the repository at this point in the history
Curator 1.1.0 Release
  • Loading branch information
untergeek committed Jun 13, 2014
2 parents 0925aac + 1b31161 commit 72e6ece
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.1.0 (???)
1.1.0 (12 June 2014)
# General
- Updated! New command structure
- New! Snapshot to fs or s3 #82 (untergeek)
Expand All @@ -12,6 +12,10 @@
- Fix --max_num_segments not being passed correctly #74 (untergeek)
- Change BUILD_NUMBER to CURATOR_BUILD_NUMBER in setup.py #60 (mohabusama)
- Fix off-by-one error in time calculations #66 (untergeek)
- Fix testing with python3 #92 (untergeek)

# Errata
- Removed optparse compatibility. Now requires argparse.

1.0.0 (25 Mar 2014)
# General
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Curator

Have time-series indices in Elasticsearch? This is the tool for you!
See the new [Documentation Wiki](http://github.com/elasticsearch/curator/wiki)!

## Versioning

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-dev
1.1.0
3 changes: 1 addition & 2 deletions curator/curator.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class NullHandler(Handler):
def emit(self, record):
pass

__version__ = '1.1.0-dev'
__version__ = '1.1.0'

# Elasticsearch versions supported
version_max = (2, 0, 0)
Expand Down Expand Up @@ -158,7 +158,6 @@ def make_parser():
snapshot_group.add_argument('--older-than', type=int, help='Capture snapshots for indices older than n TIME_UNITs.')
snapshot_group.add_argument('--most-recent', type=int, help='Capture snapshots for n most recent number of indices.')
snapshot_group.add_argument('--delete-older-than', type=int, help='Delete snapshots older than n TIME_UNITs.')
snapshot_group.add_argument('--show-snapshots', action='store_true', help='Show all snapshots in REPOSITORY.')

parser_snapshot.add_argument('--no_wait_for_completion', action='store_false',
help='Do not wait until complete to return. Waits by default.', default=DEFAULT_ARGS['wait_for_completion'])
Expand Down
2 changes: 1 addition & 1 deletion curator/es_repo_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class NullHandler(Handler):
def emit(self, record):
pass

__version__ = '1.1.0-dev'
__version__ = '1.1.0'

# Elasticsearch versions supported
version_max = (2, 0, 0)
Expand Down

0 comments on commit 72e6ece

Please sign in to comment.