version: bump version to v0.28.2-beta

This commit is contained in:
Alex Bosworth 2024-05-24 13:34:58 -07:00
parent 563e7be6ae
commit c44018dc42
No known key found for this signature in database
GPG key ID: E80D2F3F311FD87E
2 changed files with 1 additions and 15 deletions

View file

@ -18,20 +18,6 @@ This file tracks release notes for the loop client.
#### Breaking Changes
In loopd.conf file `maxlsatcost` and `maxlsatfee` were renamed to `maxl402cost`
and `maxl402fee` accordingly. Old versions of the options are still recognized
for backward compatibility, but a deprecation warning is printed. Users are
encouraged to change the options to new names if they have been changed locally.
The path in looprpc "/v1/lsat/tokens" was renamed to "/v1/l402/tokens" and
the corresponding method was renamed from `GetLsatTokens` to `GetL402Tokens`.
New `loop` binary won't work with old `loopd`, because `loop listauth` is now
calling `GetL402Tokens` method, which does not exist in previous `loopd` binary.
Old `loop` binary works with new `loopd`, since `loopd` provides a wrapper for
`GetLsatTokens` which calls `GetL402Tokens`; the wrapper logs a warning and
it will be removed in a couple of releases. HTTP endpoint "/v1/l402/tokens" is
now an additional binding for API "/v1/lsat/tokens", so it still works.
#### Bug Fixes
#### Maintenance

View file

@ -27,7 +27,7 @@ const (
// Note: please update release_notes.md when you change these values.
appMajor uint = 0
appMinor uint = 28
appPatch uint = 1
appPatch uint = 2
// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.