Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Jan 18, 2022
1 parent 3df8046 commit 5370b0f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,9 @@ Configuration items are:

## News and noteworthy

* v6.4.4 - 2022-01-18
* Added support for `:host-context`. See [issue #80](https://github.com/phax/ph-css/issues/80) and [PR #81](https://github.com/phax/ph-css/pull/81) - thanks @shagkur
* Improved support for the scientific number parsing. See [issue #82](https://github.com/phax/ph-css/issues/82) and [PR #83](https://github.com/phax/ph-css/pull/83) - thanks @shagkur
* v6.4.3 - 2022-01-13
* Extended API of `CSSReaderDeclarationList`. See [issue #78](https://github.com/phax/ph-css/issues/78) - thanks @shagkur
* Added support for the scientific number (as in `1e6`) support in parsing. See [issue #79](https://github.com/phax/ph-css/issues/79) - thanks @shagkur
Expand Down
10 changes: 10 additions & 0 deletions ph-css/src/test/resources/testfiles/css30/good/issue79.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ div {
padding: 1.5e-06;
padding: 1.5e+6;
padding: 1.5e+06;
padding: 123.5678e6;
padding: 123.5678e-6;
padding: 123.5678e-06;
padding: 123.5678e+6;
padding: 123.5678e+06;
}

span {
Expand All @@ -32,4 +37,9 @@ span {
padding: 1.5e-06em;
padding: 1.5e+6em;
padding: 1.5e+06em;
padding: 123.5678e6em;
padding: 123.5678e-6em;
padding: 123.5678e-06em;
padding: 123.5678e+6em;
padding: 123.5678e+06em;
}

0 comments on commit 5370b0f

Please sign in to comment.