version: bump version to v0.25.0-beta

pull/604/head
Alex Bosworth 10 months ago
parent a62e9819c1
commit 3406fa8265
No known key found for this signature in database
GPG Key ID: E80D2F3F311FD87E

@ -15,7 +15,7 @@ This file tracks release notes for the loop client.
## Next release
#### New Features
* 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.
#### Breaking Changes
#### Bug Fixes

@ -26,8 +26,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
// Note: please update release_notes.md when you change these values.
appMajor uint = 0
appMinor uint = 24
appPatch uint = 1
appMinor uint = 25
appPatch uint = 0
// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.

Loading…
Cancel
Save