Skip to content

Commit 25ee6b9

Browse files
committed
Bump version to 5.100.0
1 parent 5c85ac9 commit 25ee6b9

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=== master
1+
=== 5.100.0 (2026-01-01)
22

33
* Do not report associations with :is_used option as unused in the unused_associations plugin (jeremyevans)
44

doc/release_notes/5.100.0.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
= New Features
2+
3+
* A single_statement_dataset_destroy plugin has been added. This
4+
plugin will run the before_destroy hooks for all instances, then run
5+
a DELETE statement on the dataset, then run the after_destroy hooks
6+
for all instances. However, this optimized form will not be used if
7+
the model uses a custom around_destroy hook.
8+
9+
* The set_column_type schema modification method now supports a
10+
:collate option on PostgreSQL 9.1+ and MySQL.
11+
12+
= Other Improvements
13+
14+
* The unused_associations plugin no longer reports associations with
15+
the :is_used option as unused. Previously, the :is_used option only
16+
disabled changes by the :modify_associations plugin option.
17+
18+
* Postgres::PGRange#to_s is now an alias of #inspect, so it also uses
19+
the friendly inspect output added in 5.97.0.

lib/sequel/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Sequel
66

77
# The minor version of Sequel. Bumped for every non-patch level
88
# release, generally around once a month.
9-
MINOR = 99
9+
MINOR = 100
1010

1111
# The tiny version of Sequel. Usually 0, only bumped for bugfix
1212
# releases that fix regressions from previous versions.

0 commit comments

Comments
 (0)