README.md in schema_plus-1.1.0 vs README.md in schema_plus-1.1.1

- old
+ new

@@ -7,19 +7,16 @@ For added rails DRYness see also the gems [schema_associations](http://rubygems.org/gems/schema_associations) and [schema_validations](http://rubygems.org/gems/schema_validations) -[<img -src="https://secure.travis-ci.org/lomba/schema_plus.png"/>](http://travis-ci.o -rg/lomba/schema_plus) [<img src="https://gemnasium.com/lomba/schema_plus.png" -alt="Dependency Status" />](https://gemnasium.com/lomba/schema_plus) +[<img src="https://secure.travis-ci.org/lomba/schema_plus.png"/>](http://travis-ci.org/lomba/schema_plus)[<img src="https://gemnasium.com/lomba/schema_plus.png" alt="Dependency Status" />](https://gemnasium.com/lomba/schema_plus) ## Compatibility SchemaPlus supports all combinations of: -* rails 3.2 +* rails 3.2 (up through 3.2.12) * PostgreSQL, MySQL (using mysql or mysql2 gem), or SQLite3 (using sqlite3 3.7.7 which has foreign key support) * MRI ruby 1.9.2 or 1.9.3 @@ -278,16 +275,22 @@ create_table ...etc... end ## Release notes: +### 1.1.1 + +* Dependency constraint to rails 3.2.12 max, since schema_plus doesn't + currently work with 3.2.13.rc2 + ### 1.1.0 * Add support for drop_table :cascade => true. Note that until now, :cascade was implicitly true. So this change might break existing code that relied on the incorrect implicit cascade behavior. * Add support for :deferrable => :initially_deferred (thanks to [@bhavinkamani](https://github.com/bhavinkamani)) +* Works with PostGIS (thanks to [@pete](https://github.com/pete)) * Bug fix: Circular Reference/Stack Level Too Deep in Column#to_json. Thanks to [@robdimarco](https://github.com/robdimarco) for tracking down the problem * Bug fix: More robust handling of foreign keys with schema namespaces