-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Fix changelog issue. #10953
Fix changelog issue. #10953
Conversation
This PR fixes a typo in a previous changelog change, which happened because the 5.0.1 version was already published. This bumps it to 5.0.2.
packages/editor/CHANGELOG.md
Outdated
@@ -1,4 +1,4 @@ | |||
## 5.0.1 (2018-10-22) | |||
## 5.0.2 (2018-10-22) |
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.
Instead of changing the existing entry you have add yours as unreleased like this:
## 5.0.2 (unreleased)
### Polish
- Add animated logo to preview interstitial screen.
## 5.0.1 (2018-10-22)
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.
Like this? e92caad
Thanks for the patience. I've only ever published one project to NPM and it was a while ago. I'll get this.
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.
@jasmussen No worries. 🙂Now you only have to readd the ## 5.0.1 (2018-10-22)
line and then it's good to go.
Was there no changelog for 5.0.1? Now with this PR it goes straight from 5.0.0 to 5.0.2 in the changelog. |
It doesn't seem like a changelog item was added for 5.0.1, I'm not really sure where the process broke down as I'm still new to this. |
Pushed a change. Okay to go now? Thanks again for the patience. |
Thanks @jasmussen! |
* Fix changelog issue. This PR fixes a typo in a previous changelog change, which happened because the 5.0.1 version was already published. This bumps it to 5.0.2. * Address feedback. * Address feedback?
This PR fixes a typo in a previous changelog change, which happened because the 5.0.1 version was already published. This bumps it to 5.0.2.
Let me know if this looks good.