Skip to content

Commit 6f5c152

Browse files
committed
Release v3.18.0
1 parent d9fa725 commit 6f5c152

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [v3.18.0] - 2024-01-31
11+
1012
- Add environment variable substitution for SQL migrations. (#604)
1113

1214
- 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).
2729
SELECT * FROM regions WHERE name = '${REGION}';
2830
```
2931

32+
- Add native [Turso](https://turso.tech/) support with libsql driver. (#658)
33+
3034
- Fixed query for list migrations in YDB (#684)
3135

3236
## [v3.17.0] - 2023-12-15
@@ -123,7 +127,8 @@ Here's a quick summary:
123127
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
124128
- Return error when no migration files found or dir is not a directory.
125129

126-
[Unreleased]: https://github.com/pressly/goose/compare/v3.17.0...HEAD
130+
[Unreleased]: https://github.com/pressly/goose/compare/v3.18.0...HEAD
131+
[v3.18.0]: https://github.com/pressly/goose/compare/v3.17.0...v3.18.0
127132
[v3.17.0]: https://github.com/pressly/goose/compare/v3.16.0...v3.17.0
128133
[v3.16.0]: https://github.com/pressly/goose/compare/v3.15.1...v3.16.0
129134
[v3.15.1]: https://github.com/pressly/goose/compare/v3.15.0...v3.15.1

goose.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
// Deprecated: VERSION will no longer be supported in the next major release.
12-
const VERSION = "v3.17.0"
12+
const VERSION = "v3.18.0"
1313

1414
var (
1515
minVersion = int64(0)

0 commit comments

Comments
 (0)