Skip to content

Commit 06cdc3d

Browse files
committed
chore: Python 0.6.0 release
1 parent d88cf43 commit 06cdc3d

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

python/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
- Python 3.9 support.
88

9+
## [0.6.0] - 2020-11-02
10+
911
### Changed
1012

1113
- Links to remote stylesheets are deduplicated now.
@@ -84,7 +86,8 @@
8486

8587
- Initial public release
8688

87-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.5.0...HEAD
89+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.6.0...HEAD
90+
[0.6.0]: https://github.com/Stranger6667/css-inline/compare/python-v0.5.0...python-v0.6.0
8891
[0.5.0]: https://github.com/Stranger6667/css-inline/compare/python-v0.4.0...python-v0.5.0
8992
[0.4.0]: https://github.com/Stranger6667/css-inline/compare/python-v0.3.2...python-v0.4.0
9093
[0.3.2]: https://github.com/Stranger6667/css-inline/compare/python-v0.3.1...python-v0.3.2

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "css-inline-python"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2018"
66

python/README.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,20 +67,20 @@ library has good performance characteristics. In comparison with other Python pr
6767

6868
For inlining CSS in the html document from the ``Usage`` section above we have the following breakdown in our benchmarks:
6969

70-
- ``css_inline 0.5.0`` - 22.88 us
71-
- ``premailer 3.7.0`` - 331 us (**x14.48**)
72-
- ``inlinestyler 0.2.4`` - 2.43 ms (**x106.43**)
73-
- ``pynliner 0.8.0`` - 2.76 ms (**x120.76**)
70+
- ``css_inline 0.6.0`` - 23.01 us
71+
- ``premailer 3.7.0`` - 340.89 us (**x14.81**)
72+
- ``inlinestyler 0.2.4`` - 2.44 ms (**x106.35**)
73+
- ``pynliner 0.8.0`` - 2.78 ms (**x121.04**)
7474

7575
And for a more realistic email:
7676

77-
- ``css_inline 0.5.0`` - 469.57 us
78-
- ``premailer 3.7.0`` - 3.32 ms (**x7.09**)
79-
- ``inlinestyler 0.2.4`` - 63.15 ms (**x125.58**)
80-
- ``pynliner 0.8.0`` - 90.66 ms (**x189.20**)
77+
- ``css_inline 0.6.0`` - 483.3 us
78+
- ``premailer 3.7.0`` - 3.38 ms (**x7**)
79+
- ``inlinestyler 0.2.4`` - 64.41 ms (**x133.28**)
80+
- ``pynliner 0.8.0`` - 93.11 ms (**x192.65**)
8181

8282
You can take a look at the benchmarks' code at ``benches/bench.py`` file.
83-
The results above were measured with stable ``rustc 1.45.2``, ``Python 3.8`` on i8700K, and 32GB RAM.
83+
The results above were measured with stable ``rustc 1.47.0``, ``Python 3.8.6`` on i8700K, and 32GB RAM.
8484

8585
Python support
8686
--------------

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
def call_setup():
2121
setup(
2222
name="css_inline",
23-
version="0.5.0",
23+
version="0.6.0",
2424
description="Fast CSS inlining written in Rust",
2525
long_description=open("README.rst", encoding="utf-8").read(),
2626
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)