Skip to content

Commit

Permalink
Release v3.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Jan 31, 2024
1 parent d9fa725 commit 6f5c152
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion goose.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6f5c152

Please sign in to comment.