forked from karmi/retire
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
module Tire | ||
VERSION = "0.4.1" | ||
VERSION = "0.4.2" | ||
|
||
CHANGELOG =<<-END | ||
IMPORTANT CHANGES LATELY: | ||
Version 0.4.1 | ||
------------- | ||
* Added a Index#settings method to retrieve index settings as a Hash | ||
* Added support for the "scan" search in the Ruby API | ||
* Added support for reindexing the index documents into new index | ||
* Added basic support for index aliases | ||
* Changed, that Index#bulk_store runs against an index endpoint, not against `/_bulk` | ||
* Refactorings, fixes, Ruby 1.8 compatibility | ||
Version 0.4.2 | ||
------------- | ||
* Fixed incorrect handling of PUT requests in the Curb client | ||
* Fixed, that blocks passed to `Tire::Index.new` or `Tire.index` losed the scope | ||
* Added `Tire::Alias`, interface and DSL to manage aliases as resources | ||
END | ||
end |