<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>install.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -37,7 +37,7 @@ module ThinkingSphinx
   module Version #:nodoc:
     Major = 1
     Minor = 1
-    Tiny  = 17
+    Tiny  = 18
     
     String = [Major, Minor, Tiny].join('.')
   end</diff>
      <filename>lib/thinking_sphinx.rb</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ module ThinkingSphinx
   # min infix length::      1
   # mem limit::             64M
   # max matches::           1000
-  # morphology::            stem_en
+  # morphology::            nil
   # charset type::          utf-8
   # charset table::         nil
   # ignore chars::          nil
@@ -103,8 +103,7 @@ module ThinkingSphinx
       
       self.source_options  = {}
       self.index_options   = {
-        :charset_type =&gt; &quot;utf-8&quot;,
-        :morphology   =&gt; &quot;stem_en&quot;
+        :charset_type =&gt; &quot;utf-8&quot;
       }
             
       parse_config</diff>
      <filename>lib/thinking_sphinx/configuration.rb</filename>
    </modified>
    <modified>
      <diff>@@ -34,6 +34,24 @@ spec = Gem::Specification.new do |s|
     &quot;tasks/**/*.rake&quot;,
     &quot;vendor/**/*&quot;
   ]
+  s.post_install_message = &lt;&lt;-MESSAGE
+With the release of Thinking Sphinx 1.1.18, there is one important change to
+note: previously, the default morphology for indexing was 'stem_en'. The new
+default is nil, to avoid any unexpected behavior. If you wish to keep the old
+value though, you will need to add the following settings to your
+config/sphinx.yml file:
+
+development:
+  morphology: stem_en
+test:
+  morphology: stem_en
+production:
+  morphology: stem_en
+
+To understand morphologies/stemmers better, visit the following link:
+http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
+
+MESSAGE
 end
 
 Rake::GemPackageTask.new(spec) do |p|</diff>
      <filename>tasks/distribution.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,16 +2,33 @@
 
 Gem::Specification.new do |s|
   s.name = %q{thinking-sphinx}
-  s.version = &quot;1.1.17&quot;
+  s.version = &quot;1.1.18&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Pat Allan&quot;]
-  s.date = %q{2009-05-24}
+  s.date = %q{2009-05-27}
   s.description = %q{A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.}
   s.email = %q{pat@freelancing-gods.com}
   s.files = [&quot;lib/thinking_sphinx/active_record/attribute_updates.rb&quot;, &quot;lib/thinking_sphinx/active_record/delta.rb&quot;, &quot;lib/thinking_sphinx/active_record/has_many_association.rb&quot;, &quot;lib/thinking_sphinx/active_record/search.rb&quot;, &quot;lib/thinking_sphinx/active_record.rb&quot;, &quot;lib/thinking_sphinx/adapters/abstract_adapter.rb&quot;, &quot;lib/thinking_sphinx/adapters/mysql_adapter.rb&quot;, &quot;lib/thinking_sphinx/adapters/postgresql_adapter.rb&quot;, &quot;lib/thinking_sphinx/association.rb&quot;, &quot;lib/thinking_sphinx/attribute.rb&quot;, &quot;lib/thinking_sphinx/class_facet.rb&quot;, &quot;lib/thinking_sphinx/collection.rb&quot;, &quot;lib/thinking_sphinx/configuration.rb&quot;, &quot;lib/thinking_sphinx/core/string.rb&quot;, &quot;lib/thinking_sphinx/deltas/datetime_delta.rb&quot;, &quot;lib/thinking_sphinx/deltas/default_delta.rb&quot;, &quot;lib/thinking_sphinx/deltas/delayed_delta/delta_job.rb&quot;, &quot;lib/thinking_sphinx/deltas/delayed_delta/flag_as_deleted_job.rb&quot;, &quot;lib/thinking_sphinx/deltas/delayed_delta/job.rb&quot;, &quot;lib/thinking_sphinx/deltas/delayed_delta.rb&quot;, &quot;lib/thinking_sphinx/deltas.rb&quot;, &quot;lib/thinking_sphinx/deploy/capistrano.rb&quot;, &quot;lib/thinking_sphinx/facet.rb&quot;, &quot;lib/thinking_sphinx/facet_collection.rb&quot;, &quot;lib/thinking_sphinx/field.rb&quot;, &quot;lib/thinking_sphinx/index/builder.rb&quot;, &quot;lib/thinking_sphinx/index/faux_column.rb&quot;, &quot;lib/thinking_sphinx/index.rb&quot;, &quot;lib/thinking_sphinx/property.rb&quot;, &quot;lib/thinking_sphinx/rails_additions.rb&quot;, &quot;lib/thinking_sphinx/search/facets.rb&quot;, &quot;lib/thinking_sphinx/search.rb&quot;, &quot;lib/thinking_sphinx/source/internal_properties.rb&quot;, &quot;lib/thinking_sphinx/source/sql.rb&quot;, &quot;lib/thinking_sphinx/source.rb&quot;, &quot;lib/thinking_sphinx/tasks.rb&quot;, &quot;lib/thinking_sphinx.rb&quot;, &quot;LICENCE&quot;, &quot;README.textile&quot;, &quot;tasks/distribution.rb&quot;, &quot;tasks/testing.rb&quot;, &quot;tasks/rails.rake&quot;, &quot;vendor/after_commit&quot;, &quot;vendor/after_commit/init.rb&quot;, &quot;vendor/after_commit/lib&quot;, &quot;vendor/after_commit/lib/after_commit&quot;, &quot;vendor/after_commit/lib/after_commit/active_record.rb&quot;, &quot;vendor/after_commit/lib/after_commit/connection_adapters.rb&quot;, &quot;vendor/after_commit/lib/after_commit.rb&quot;, &quot;vendor/after_commit/LICENSE&quot;, &quot;vendor/after_commit/Rakefile&quot;, &quot;vendor/after_commit/README&quot;, &quot;vendor/after_commit/test&quot;, &quot;vendor/after_commit/test/after_commit_test.rb&quot;, &quot;vendor/delayed_job&quot;, &quot;vendor/delayed_job/lib&quot;, &quot;vendor/delayed_job/lib/delayed&quot;, &quot;vendor/delayed_job/lib/delayed/job.rb&quot;, &quot;vendor/delayed_job/lib/delayed/message_sending.rb&quot;, &quot;vendor/delayed_job/lib/delayed/performable_method.rb&quot;, &quot;vendor/delayed_job/lib/delayed/worker.rb&quot;, &quot;vendor/riddle&quot;, &quot;vendor/riddle/lib&quot;, &quot;vendor/riddle/lib/riddle&quot;, &quot;vendor/riddle/lib/riddle/client&quot;, &quot;vendor/riddle/lib/riddle/client/filter.rb&quot;, &quot;vendor/riddle/lib/riddle/client/message.rb&quot;, &quot;vendor/riddle/lib/riddle/client/response.rb&quot;, &quot;vendor/riddle/lib/riddle/client.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration&quot;, &quot;vendor/riddle/lib/riddle/configuration/distributed_index.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/index.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/indexer.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/remote_index.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/searchd.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/section.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/source.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/sql_source.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration/xml_source.rb&quot;, &quot;vendor/riddle/lib/riddle/configuration.rb&quot;, &quot;vendor/riddle/lib/riddle/controller.rb&quot;, &quot;vendor/riddle/lib/riddle.rb&quot;, &quot;spec/unit/thinking_sphinx/active_record/delta_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/active_record/has_many_association_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/active_record/search_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/active_record_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/association_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/attribute_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/collection_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/configuration_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/core/string_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/facet_collection_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/facet_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/field_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/index/builder_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/index/faux_column_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/index_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/rails_additions_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/search_spec.rb&quot;, &quot;spec/unit/thinking_sphinx/source_spec.rb&quot;, &quot;spec/unit/thinking_sphinx_spec.rb&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://ts.freelancing-gods.com}
+  s.post_install_message = %q{With the release of Thinking Sphinx 1.1.18, there is one important change to
+note: previously, the default morphology for indexing was 'stem_en'. The new
+default is nil, to avoid any unexpected behavior. If you wish to keep the old
+value though, you will need to add the following settings to your
+config/sphinx.yml file:
+
+development:
+  morphology: stem_en
+test:
+  morphology: stem_en
+production:
+  morphology: stem_en
+
+To understand morphologies/stemmers better, visit the following link:
+http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
+
+}
   s.rdoc_options = [&quot;--title&quot;, &quot;Thinking Sphinx -- Rails/Merb Sphinx Plugin&quot;, &quot;--line-numbers&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{thinking-sphinx}</diff>
      <filename>thinking-sphinx.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>cd9cf7bd1dea7b097b8e7236ca5617f68dc0ab49</id>
    </parent>
  </parents>
  <author>
    <name>Pat Allan</name>
    <email>pat@freelancing-gods.com</email>
  </author>
  <url>http://github.com/freelancing-god/thinking-sphinx/commit/6dc60a2d0ee9a4ae2ee478d5aedfc63097724084</url>
  <id>6dc60a2d0ee9a4ae2ee478d5aedfc63097724084</id>
  <committed-date>2009-05-27T12:52:36-07:00</committed-date>
  <authored-date>2009-05-27T12:52:36-07:00</authored-date>
  <message>Removing default morphology, and adding messages to make that clear.</message>
  <tree>4d5b93e9887f6f5bc7f3ae8171ade8e51fce96d5</tree>
  <committer>
    <name>Pat Allan</name>
    <email>pat@freelancing-gods.com</email>
  </committer>
</commit>
