Skip to content

Commit

Permalink
+ 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
floere committed Nov 2, 2011
1 parent a29819b commit 65c6c63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion history.textile
@@ -1,5 +1,10 @@
h2. Upcoming Version h2. Upcoming Version


h2. Version 3.3.2

* hanke: (server) Internal interface for generators changed. The generators are now used directly, e.g.: @Picky::Generators::Partial::Substring.new(from: 1).generate_from inverted_index_hash@. No change on your part is necessary if you didn't use @Picky::Generators::{Partial,Weights,Similarity}Generator@.
* hanke: (server) Experimental exchangeable backend change: @Redis now passes bundle, client into the lambda, instead of client, bundle@. E.g. @inverted: ->(bundle, client) { Picky::Backends::Redis::List.new(client, "#{bundle.identifier}:inverted") }@

h2. Version 3.3.1 h2. Version 3.3.1


* hanke: (server) Fix for @Partial::None@, introduced in 3.3.0. * hanke: (server) Fix for @Partial::None@, introduced in 3.3.0.
Expand All @@ -12,7 +17,7 @@ h2. Version 3.3.0
New default option is @Postfix.new(from: -3)@, not @Substring.new(from: -3, to: -1)@ anymore. The two options are identical in function. New default option is @Postfix.new(from: -3)@, not @Substring.new(from: -3, to: -1)@ anymore. The two options are identical in function.
* hanke: (server) Only Picky's tokenizers call @to_s@ on data anymore. This means that you can write tokenizers that work on whatever kind of object you like. The Picky standard tokenizers themselves ensure that they get to work with a string. * hanke: (server) Only Picky's tokenizers call @to_s@ on data anymore. This means that you can write tokenizers that work on whatever kind of object you like. The Picky standard tokenizers themselves ensure that they get to work with a string.
* hanke: (server) Fix for @Substring@ partialization, when negative @from@ and @to@ options are used at the same time. * hanke: (server) Fix for @Substring@ partialization, when negative @from@ and @to@ options are used at the same time.
* hanke: (server) Exchangeable backends (please see blog post for an explanation). * hanke: (server) Experimental exchangeable backends.
* hanke: (project) RSpec 1 has been updated to RSpec 2. * hanke: (project) RSpec 1 has been updated to RSpec 2.


h2. Version 3.2.0 h2. Version 3.2.0
Expand Down
2 changes: 1 addition & 1 deletion version.rb
@@ -1,3 +1,3 @@
module Picky module Picky
VERSION = '3.3.1' VERSION = '3.3.2'
end end

0 comments on commit 65c6c63

Please sign in to comment.