Skip to content

Commit 504c415

Browse files
committed
Release v2.3.0
1 parent 55e507f commit 504c415

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

README.markdown

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ password = {{env "MIGRATOR_PASSWORD"}}
9696
# password is not required if using SSH agent authentication
9797
# password =
9898
# keyfile is the path to a SSH key file
99-
# keyfile =
99+
# keyfile =
100100
# passphrase for the SSH key file given above or one of the default SSH key files in ~/.ssh
101101
# passphrase =
102102

@@ -357,7 +357,7 @@ your PostgreSQL server is `pg.example.com`, but you only have SSH access, then
357357
your SSH host would be pg.example.com and your database host would be
358358
`localhost`.
359359

360-
Tern will automatically use an SSH agent or `~/.ssh/id_dsa`, `~/.ssh/id_rsa`,
360+
Tern will automatically use an SSH agent or `~/.ssh/id_dsa`, `~/.ssh/id_rsa`,
361361
`~/.ssh/ed25519` and`~/.ssh/id_ecdsa` if available.
362362

363363
## Embedding Tern
@@ -419,6 +419,12 @@ is still available through RubyGems and the source code is on the ruby branch.
419419

420420
## Version History
421421

422+
## 2.3.0 (November 27, 2024)
423+
424+
* Add print-migrations command
425+
* Check more default SSH key locations
426+
* Windows fixes and improved Windows SSH support
427+
422428
## 2.2.3 (October 1, 2024)
423429

424430
* Fix: version command for v2.2.2 was not updated and still outputted v2.2.1.

main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
ini "github.com/vaughan0/go-ini"
2727
)
2828

29-
const VERSION = "2.2.3"
29+
const VERSION = "2.3.0"
3030

3131
var defaultConf = `[database]
3232
# host is required (network host or path to Unix domain socket)
@@ -297,15 +297,15 @@ Migrations can only go forward to the latest version.
297297
Short: "Print the migrations",
298298
Long: `Print migrations
299299
300-
This prints the migrations into a single file or to the console.
300+
This prints the migrations into a single file or to the console.
301301
302302
This can be useful if the SQL in the migrations is needed by other tools,
303303
such as programs for code generation (e.g., sqlc.dev) or tools for analyzing
304304
the DDL.
305305
306306
Note that the generated SQL file is not intended to be executed directly
307-
against your database, as it does not update the version table nor does
308-
it do any error handling
307+
against your database, as it does not update the version table nor does
308+
it do any error handling
309309
310310
`,
311311
Run: PrintMigrations,

0 commit comments

Comments
 (0)