Skip to content

Commit 7dcbc33

Browse files
committed
release: 3.1.0
- Add AR 6.1 & 7.0 - Add Ruby 3.1
1 parent ebd515a commit 7dcbc33

2 files changed

Lines changed: 25 additions & 24 deletions

File tree

README.md

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -451,29 +451,30 @@ SchemaPlus::Core provides a state object and of callbacks to various phases of t
451451

452452
## Release Notes
453453

454-
* 3.0.0 Drop AR < 5.2 and add AR 6.0 support. Drop Ruby < 2.5 and add Ruby 3.0 support.
455-
* 2.2.3 Fix dumping complex expression based indexes in AR 5.x
456-
* 2.2.2 Fixed dumping tables in postgresql in AR 5.2 when the PK is not a bigint.
457-
* 2.2.1 Fixed expression index handling in AR5.x.
458-
* 2.2.0 Added AR5.2 support. Thanks to [@jeremyyap](https://github.com/jeremyyap)
459-
* 2.1.1 Bug fix: Don't lose habtm options. Thanks to [@iagopiimenta ](https://github.com/iagopiimenta)
460-
* 2.1.0 Added AR5.1 support. Thanks to [@iagopiimenta ](https://github.com/iagopiimenta)
461-
* 2.0.1 Tighten up AR dependency. Thanks to [@myabc](https://github.com/myabc).
462-
* 2.0.0 Added AR5 support, removed AR4.2 support. Thanks to [@boazy](https://github.com/boazy).
463-
* 1.0.2 Missing require
464-
* 1.0.1 Explicit gem dependencies
465-
* 1.0.0 Clean up `SchemaDump::Table::Column` and `SchemaDump::Table::Index` API: `#options` is now a hash and `#comments` is now an array; no longer have `add_option` and `add_comment` methods.
466-
* 0.6.2 Bug fix: don't choke on INHERITANCE in table definition (#7). Thanks to [@ADone](https://github.com/ADone).
467-
* 0.6.1 Make sure to require pathname (#5)
468-
* 0.6.0 Added `table.alt` to dumper; Bug fix: Don't crash when AR fails to dump a table. Thanks to [@stenver](https://github.com/stenver) for tracking it down
469-
* 0.5.1 Bug fix: Don't choke on a quoted newline in a `CREATE TABLE` statement ([#3](https://github.com/SchemaPlus/schema_plus_core/pull/3)). Thanks to [@mikeauclair](https://github.com/mikeauclair)
470-
* 0.5.0 Added `Migration::DropTable`
471-
* 0.4.0 Added `implements_reference` to `Migration::Column` stack env
472-
* 0.3.1 Pass along (undocumented) return values from association declarations ([#2](https://github.com/SchemaPlus/schema_plus_core/pull/2)). Thanks to [@lowjoel](https://github.com/lowjoel)
473-
* 0.3.0 Added `Model::Association::Declaration` ([#1](https://github.com/SchemaPlus/schema_plus_core/pull/1)). Thanks to [@lowjoel](https://github.com/lowjoel).
474-
* 0.2.1 Added `Migration::CreateTable` and `Schema::Define`; removed dependency on (defunct) `schema_monkey_rails` gem. [Oops, this should have been a minor version bump]
475-
* 0.2.0 Added `Migration::DropTable`
476-
* 0.1.0 Initial release
454+
* **3.1.0** Add AR 6.1 and 7.0, add Ruby 3.1
455+
* **3.0.0** Drop AR < 5.2 and add AR 6.0 support. Drop Ruby < 2.5 and add Ruby 3.0 support.
456+
* **2.2.3** Fix dumping complex expression based indexes in AR 5.x
457+
* **2.2.2** Fixed dumping tables in postgresql in AR 5.2 when the PK is not a bigint.
458+
* **2.2.1** Fixed expression index handling in AR5.x.
459+
* **2.2.0** Added AR5.2 support. Thanks to [@jeremyyap](https://github.com/jeremyyap)
460+
* **2.1.1** Bug fix: Don't lose habtm options. Thanks to [@iagopiimenta ](https://github.com/iagopiimenta)
461+
* **2.1.0** Added AR5.1 support. Thanks to [@iagopiimenta ](https://github.com/iagopiimenta)
462+
* **2.0.1** Tighten up AR dependency. Thanks to [@myabc](https://github.com/myabc).
463+
* **2.0.0** Added AR5 support, removed AR4.2 support. Thanks to [@boazy](https://github.com/boazy).
464+
* **1.0.2** Missing require
465+
* **1.0.1** Explicit gem dependencies
466+
* **1.0.0** Clean up `SchemaDump::Table::Column` and `SchemaDump::Table::Index` API: `#options` is now a hash and `#comments` is now an array; no longer have `add_option` and `add_comment` methods.
467+
* **0.6.2** Bug fix: don't choke on INHERITANCE in table definition (#7). Thanks to [@ADone](https://github.com/ADone).
468+
* **0.6.1** Make sure to require pathname (#5)
469+
* **0.6.0** Added `table.alt` to dumper; Bug fix: Don't crash when AR fails to dump a table. Thanks to [@stenver](https://github.com/stenver) for tracking it down
470+
* **0.5.1** Bug fix: Don't choke on a quoted newline in a `CREATE TABLE` statement ([#3](https://github.com/SchemaPlus/schema_plus_core/pull/3)). Thanks to [@mikeauclair](https://github.com/mikeauclair)
471+
* **0.5.0** Added `Migration::DropTable`
472+
* **0.4.0** Added `implements_reference` to `Migration::Column` stack env
473+
* **0.3.1** Pass along (undocumented) return values from association declarations ([#2](https://github.com/SchemaPlus/schema_plus_core/pull/2)). Thanks to [@lowjoel](https://github.com/lowjoel)
474+
* **0.3.0** Added `Model::Association::Declaration` ([#1](https://github.com/SchemaPlus/schema_plus_core/pull/1)). Thanks to [@lowjoel](https://github.com/lowjoel).
475+
* **0.2.1** Added `Migration::CreateTable` and `Schema::Define`; removed dependency on (defunct) `schema_monkey_rails` gem. [Oops, this should have been a minor version bump]
476+
* **0.2.0** Added `Migration::DropTable`
477+
* **0.1.0** Initial release
477478

478479
## Development & Testing
479480

lib/schema_plus/core/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module SchemaPlus
44
module Core
5-
VERSION = "3.0.0"
5+
VERSION = "3.1.0"
66
end
77
end

0 commit comments

Comments
 (0)