Skip to content

Commit

Permalink
Bump version to 5.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Feb 28, 2020
1 parent 00c0888 commit 00fc0fd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=== master
=== 5.30.0 (2020-03-01)

* Remove specs and old release notes from the gem to reduce gem size by over 40% (jeremyevans)

Expand Down
20 changes: 20 additions & 0 deletions doc/release_notes/5.30.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
= New Features

* Sequel now supports generated columns on SQLite 3.31+ using the
:generated_always_as and :generated_type options. Example:

DB.create_table(:table) do
primary_key :id
Numeric :amount, null: false
Numeric :tax, null: false
Numeric :total, generated_always_as: (Sequel[:amount] + :tax)
end

= Other Improvements

* The Database#transaction :before_retry option is now called before
retrying the transaction even when the :num_retries option is set
to nil.

* The gem no longer ships with specs and older release notes, reducing
the gem size by over 40%.
2 changes: 1 addition & 1 deletion lib/sequel/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Sequel

# The minor version of Sequel. Bumped for every non-patch level
# release, generally around once a month.
MINOR = 29
MINOR = 30

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

0 comments on commit 00fc0fd

Please sign in to comment.