diff --git a/release_notes.md b/release_notes.md index c71d135..d9d4564 100644 --- a/release_notes.md +++ b/release_notes.md @@ -16,6 +16,9 @@ This file tracks release notes for the loop client. #### New Features +* User-specified liquidity parameters are persisted on disk to enable the + liquidity manager's config to surive after a restart. + #### Breaking Changes #### Bug Fixes diff --git a/version.go b/version.go index c79f9ec..2768ed4 100644 --- a/version.go +++ b/version.go @@ -26,7 +26,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 18 + appMinor uint = 19 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per