Skip to content

Releases: jethrodaniel/sqlite_extensions-uuid

v1.0.2 - 2025-07-03

03 Jul 19:44
36e8732
Compare
Choose a tag to compare

v1.0.1 - 2025-03-20

20 Mar 17:59
Compare
Choose a tag to compare

Just some cleanup.

  • add SqliteExtensions::UUID::VERSION
  • use rspec for tests
  • misc cleanup with rubocop

Full Changelog: v1.0.0...v1.0.1

v1.0.0 - 2024-12-07

07 Dec 20:07
Compare
Choose a tag to compare

Now that sqlite3-ruby natively supports loading extensions via Database.new, we can easily load extensions in Rails apps without having to monkey-patch anything.

This is all you need:

gem "sqlite_extensions-uuid"
development:
  adapter: sqlite3
  extensions:
    - <%= SqliteExtensions::UUID.to_path %>

Now that this is finally supported, we've removed the old railtie-based approach.

We've also made this gem depend on sqlite3-ruby >= 2.4.0 in order to ensure that support is available.

And with that, we're v1.0.0!