From 3406fa8265037bc1f848bd1b130bcc2993162246 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Tue, 27 Jun 2023 19:51:59 -0700 Subject: [PATCH] version: bump version to v0.25.0-beta --- release_notes.md | 2 +- version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/release_notes.md b/release_notes.md index 2a9fe8c..c71d135 100644 --- a/release_notes.md +++ b/release_notes.md @@ -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 diff --git a/version.go b/version.go index 1e9e9b9..0b0a778 100644 --- a/version.go +++ b/version.go @@ -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.