-
Notifications
You must be signed in to change notification settings - Fork 12
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
Update CHANGELOG #27
Update CHANGELOG #27
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,48 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
# Changelog | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
<!-- Instructions | ||
|
||
This changelog follows the patterns described here: <https://keepachangelog.com/en/1.0.0/>. | ||
|
||
Subheadings to categorize changes are `added, changed, deprecated, removed, fixed, security`. | ||
|
||
--> | ||
|
||
The latest published SimpleCSS release is [0.2.1](#021-2021-07-20) which was released on 2021-07-20. | ||
You can find its changes [documented below](#021-2021-07-20). | ||
|
||
## [Unreleased] | ||
|
||
This release has an [MSRV][] of 1.65. | ||
|
||
## [0.2.1] - 2021-07-20 | ||
- Add rules sorting by specificity. Thanks to [@baskerville](https://github.com/baskerville) | ||
This is the first release under the stewardship of [Linebender][], who is now responsible for maintenance of this crate. | ||
Many thanks to Yevhenii Reizner for the years of hard work that he has poured into this and other crates. | ||
|
||
## Added | ||
|
||
- Support for `no_std`. ([#17][] by [@waywardmonkeys][]) | ||
|
||
## [0.2.1][] (2021-07-20) | ||
|
||
- Add rules sorting by specificity. ([#7][] by [@baskerville][]) | ||
|
||
## [0.2.0][] (2019-08-17) | ||
|
||
## [0.2.0] - 2019-08-17 | ||
- A complete rewrite. | ||
|
||
## 0.1.0 - 2017-01-14 | ||
## 0.1.0 (2017-01-14) | ||
|
||
Comment on lines
-17
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The dash (as opposed to parentheses) separation is what the template uses. Anyway, can discuss that at a later date as it affects more than just this repo. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At some point, one of our repos diverged. I'm happy to come to a decision and then just do this however in this and simplecss rather than change it one way and then back. :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Err, this and svgtypes. |
||
- Initial release. | ||
|
||
[MSRV]: README.md#minimum-supported-rust-version-msrv | ||
[Linebender]: https://github.com/linebender | ||
|
||
[#7]: https://github.com/linebender/simplecss/pull/7 | ||
[#17]: https://github.com/linebender/simplecss/pull/17 | ||
|
||
[@baskerville]: https://github.com/baskerville | ||
[@waywardmonkeys]: https://github.com/waywardmonkeys | ||
|
||
[Unreleased]: https://github.com/RazrFalcon/simplecss/compare/v0.2.1...HEAD | ||
[0.2.1]: https://github.com/RazrFalcon/simplecss/compare/v0.2.0...v0.2.1 | ||
[0.2.0]: https://github.com/RazrFalcon/simplecss/compare/v0.1.0...v0.2.0 | ||
|
||
[MSRV]: README.md#minimum-supported-rust-version-msrv |
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 think this should be
###
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.
Ah, yes. I'll fix it in the release PR.