-
Notifications
You must be signed in to change notification settings - Fork 255
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
Release preparations for v0.23.0 #912
Conversation
@phlogistonjohn I tried to use "promote" mode of apiage.py, but I couldn't get it to work, maybe I misunderstand the feature. So I did the move from preview to stable in |
I think you may have forgotten that the script cross checks the state of the Go files with the JSON. You edited the JSON only. The tool expects you to edit the Go files to fix the ceph_preview flags and then you can run The tests are all failing because the JSON file now disagrees with the Go sources. :-) IOW my workflow would roughly be:
I do like to see at least one commit per directory (e.g. If you'd prefer I add this to the release docs, I'm happy to do it. But I'll let you run through the process to validate it in case I missed anything. |
README change looks good BTW. |
Doh. 🤦♂️ I completely forgot about the preview tag in the code. |
Signed-off-by: Sven Anderson <[email protected]>
aa2fb2c
to
f25d775
Compare
Signed-off-by: Sven Anderson <[email protected]>
Signed-off-by: Sven Anderson <[email protected]>
Signed-off-by: Sven Anderson <[email protected]>
f25d775
to
311fd91
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.
LGTM
@@ -14,7 +11,7 @@ func TestMakeDirs(t *testing.T) { | |||
defer fsDisconnect(t, mount) | |||
|
|||
dir1 := "/base/sub/way" | |||
err := mount.MakeDirs(dir1, 0755) | |||
err := mount.MakeDirs(dir1, 0o755) |
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.
I'm guessing your IDE did this? Not an issue, I'm just curious.
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.
Yes, my IDE runs gofmt when I save. So maybe that changed?
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.
Seem like that's the case :-)
Fixes: #892