Skip to content

Commit fb305de

Browse files
authored
Merge pull request #604 from lightninglabs/update-to-v0.25.0-beta
version: bump version to v0.25.0-beta
2 parents a62e981 + 3406fa8 commit fb305de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This file tracks release notes for the loop client.
1515
## Next release
1616

1717
#### New Features
18-
* Deprecated boltdb, we now support both sqlite and postgres. On first startup, loop will automatically migrate your database to sqlite. If you want to use postgres, you can set the `--databasebackend` flag to `postgres` and set the `--postgres.host`, `--postgres.port`, `--postgres.user`, `--postgres.password` and `--postgres.dbname` flags to connect to your postgres instance. Your boltdb file will be saved as a backup in the loop directory. NOTE: we're currently only supporting migrating once from boltdb to a sql backend. A manual migration between postgres and sqlite will be supported in the future.
18+
1919
#### Breaking Changes
2020

2121
#### Bug Fixes

version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
2626
const (
2727
// Note: please update release_notes.md when you change these values.
2828
appMajor uint = 0
29-
appMinor uint = 24
30-
appPatch uint = 1
29+
appMinor uint = 25
30+
appPatch uint = 0
3131

3232
// appPreRelease MUST only contain characters from semanticAlphabet per
3333
// the semantic versioning spec.

0 commit comments

Comments
 (0)