diff --git a/CHANGELOG.md b/CHANGELOG.md index 553bb60ef..597c060e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [v3.18.0] - 2024-01-31 + - Add environment variable substitution for SQL migrations. (#604) - This feature is **disabled by default**, and can be enabled by adding an annotation to the @@ -27,6 +29,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). SELECT * FROM regions WHERE name = '${REGION}'; ``` +- Add native [Turso](https://turso.tech/) support with libsql driver. (#658) + - Fixed query for list migrations in YDB (#684) ## [v3.17.0] - 2023-12-15 @@ -123,7 +127,8 @@ Here's a quick summary: - Add new `context.Context`-aware functions and methods, for both sql and go migrations. - Return error when no migration files found or dir is not a directory. -[Unreleased]: https://github.com/pressly/goose/compare/v3.17.0...HEAD +[Unreleased]: https://github.com/pressly/goose/compare/v3.18.0...HEAD +[v3.18.0]: https://github.com/pressly/goose/compare/v3.17.0...v3.18.0 [v3.17.0]: https://github.com/pressly/goose/compare/v3.16.0...v3.17.0 [v3.16.0]: https://github.com/pressly/goose/compare/v3.15.1...v3.16.0 [v3.15.1]: https://github.com/pressly/goose/compare/v3.15.0...v3.15.1 diff --git a/goose.go b/goose.go index ddffd8c28..6a3fa8fef 100644 --- a/goose.go +++ b/goose.go @@ -9,7 +9,7 @@ import ( ) // Deprecated: VERSION will no longer be supported in the next major release. -const VERSION = "v3.17.0" +const VERSION = "v3.18.0" var ( minVersion = int64(0)