-
Notifications
You must be signed in to change notification settings - Fork 411
Cut 0.0.99 #990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cut 0.0.99 #990
Conversation
Codecov Report
@@ Coverage Diff @@
## main #990 +/- ##
=======================================
Coverage 90.76% 90.77%
=======================================
Files 60 60
Lines 30914 30914
=======================================
+ Hits 28059 28061 +2
+ Misses 2855 2853 -2
Continue to review full report at Codecov.
|
CHANGELOG.md
Outdated
## Serialization Compatibility | ||
|
||
* Due to a bug discovered in 0.0.98, if a `ChannelManager` is serialized on | ||
version 0.0.98 while an `Event::PaymentSent` is pending processing, the | ||
`ChannelManager` will fail to deserialize both on version 0.0.98 and later | ||
versions. If you have such a `ChannelManager` available, a simple patch will | ||
allow it to deserialize, please file an issue if you need assistance. | ||
allow it to deserialize, please file an issue if you need assistance (#973). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should you mention edbc30c which is bumping chan's serialization ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope, its fully backwards- and forwards-compatible. 0.0.98 can read versions written by 0.0.99 (though it ignores the fee info) and 0.0.99 can read versions written by 0.0.98.
ea4862d
to
11d4bb9
Compare
CHANGELOG.md
Outdated
## Serialization Compatibility | ||
|
||
* Due to a bug discovered in 0.0.98, if a `ChannelManager` is serialized on | ||
version 0.0.98 while an `Event::PaymentSent` is pending processing, the | ||
`ChannelManager` will fail to deserialize both on version 0.0.98 and later | ||
versions. If you have such a `ChannelManager` available, a simple patch will | ||
allow it to deserialize, please file an issue if you need assistance. | ||
allow it to deserialize, please file an issue if you need assistance (#973). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't look like adding PR/issue numbers adds links
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, is it necessary? Its kinda annoying to have a million links in a plaintext document, and its not hard to load the PR from the number.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably not necessary but I'd think it's less annoying since it is essentially write once, read many times.
5fea2ad
to
83110e3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some nits.
CHANGELOG.md
Outdated
## Serialization Compatibility | ||
|
||
* Due to a bug discovered in 0.0.98, if a `ChannelManager` is serialized on | ||
version 0.0.98 while an `Event::PaymentSent` is pending processing, the | ||
`ChannelManager` will fail to deserialize both on version 0.0.98 and later | ||
versions. If you have such a `ChannelManager` available, a simple patch will | ||
allow it to deserialize, please file an issue if you need assistance. | ||
allow it to deserialize, please file an issue if you need assistance (#973). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably not necessary but I'd think it's less annoying since it is essentially write once, read many times.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK mod jeff's nits
83110e3
to
c9a8b26
Compare
Fixed nits and squashed. Will take after CI:
|
This assumes #975 lands first.