Skip to content

Commit 60d11b2

Browse files
committed
chore(python): Release 0.8.4
1 parent b114027 commit 60d11b2

File tree

3 files changed

+48
-50
lines changed

3 files changed

+48
-50
lines changed

bindings/python/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.8.4] - 2022-10-20
6+
57
### Fixed
68

79
- Ignoring selectors' specificity when applying declarations from different qualified rules. [#148](https://github.com/Stranger6667/css-inline/issues/148)
@@ -211,7 +213,8 @@
211213

212214
- Initial public release
213215

214-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.8.3...HEAD
216+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.8.4...HEAD
217+
[0.8.4]: https://github.com/Stranger6667/css-inline/compare/python-v0.8.3...python-v0.8.4
215218
[0.8.3]: https://github.com/Stranger6667/css-inline/compare/python-v0.8.2...python-v0.8.3
216219
[0.8.2]: https://github.com/Stranger6667/css-inline/compare/python-v0.8.1...python-v0.8.2
217220
[0.8.1]: https://github.com/Stranger6667/css-inline/compare/python-v0.8.0...python-v0.8.1

bindings/python/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "css-inline-python"
3-
version = "0.8.3"
3+
version = "0.8.4"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
66

bindings/python/setup.py

+43-48
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,48 @@
11
import platform
22

33
from setuptools import setup
4-
from setuptools_rust import Binding, RustExtension
4+
from setuptools_rust import RustExtension
55

66

7-
def call_setup():
8-
setup(
9-
name="css_inline",
10-
version="0.8.3",
11-
description="Fast CSS inlining written in Rust",
12-
long_description=open("README.md", encoding="utf-8").read(),
13-
long_description_content_type="text/markdown",
14-
keywords="css inline html rust",
15-
author="Dmitry Dygalo",
16-
author_email="[email protected]",
17-
maintainer="Dmitry Dygalo",
18-
maintainer_email="[email protected]",
19-
python_requires=">=3.7",
20-
url="https://github.com/Stranger6667/css-inline/tree/master/bindings/python",
21-
license="MIT",
22-
rust_extensions=[
23-
RustExtension(
24-
"css_inline",
25-
py_limited_api=True,
26-
features=(
27-
[] if platform.python_implementation() == "PyPy" else ["pyo3/abi3"]
28-
),
29-
rust_version=">=1.54.0",
30-
)
31-
],
32-
classifiers=[
33-
"Development Status :: 4 - Beta",
34-
"Intended Audience :: Developers",
35-
"License :: OSI Approved :: MIT License",
36-
"Operating System :: MacOS :: MacOS X",
37-
"Operating System :: Microsoft :: Windows",
38-
"Operating System :: POSIX",
39-
"Programming Language :: Python :: 3",
40-
"Programming Language :: Python :: 3.7",
41-
"Programming Language :: Python :: 3.8",
42-
"Programming Language :: Python :: 3.9",
43-
"Programming Language :: Python :: 3.10",
44-
"Programming Language :: Python :: Implementation :: CPython",
45-
"Programming Language :: Python :: Implementation :: PyPy",
46-
"Programming Language :: Rust",
47-
],
48-
zip_safe=False,
49-
)
50-
51-
52-
if __name__ == "__main__":
53-
call_setup()
7+
setup(
8+
name="css_inline",
9+
version="0.8.4",
10+
description="Fast CSS inlining written in Rust",
11+
long_description=open("README.md", encoding="utf-8").read(),
12+
long_description_content_type="text/markdown",
13+
keywords="css inline html rust",
14+
author="Dmitry Dygalo",
15+
author_email="[email protected]",
16+
maintainer="Dmitry Dygalo",
17+
maintainer_email="[email protected]",
18+
python_requires=">=3.7",
19+
url="https://github.com/Stranger6667/css-inline/tree/master/bindings/python",
20+
license="MIT",
21+
rust_extensions=[
22+
RustExtension(
23+
"css_inline",
24+
py_limited_api=True,
25+
features=(
26+
[] if platform.python_implementation() == "PyPy" else ["pyo3/abi3"]
27+
),
28+
rust_version=">=1.54.0",
29+
)
30+
],
31+
classifiers=[
32+
"Development Status :: 4 - Beta",
33+
"Intended Audience :: Developers",
34+
"License :: OSI Approved :: MIT License",
35+
"Operating System :: MacOS :: MacOS X",
36+
"Operating System :: Microsoft :: Windows",
37+
"Operating System :: POSIX",
38+
"Programming Language :: Python :: 3",
39+
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: 3.8",
41+
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: Implementation :: CPython",
44+
"Programming Language :: Python :: Implementation :: PyPy",
45+
"Programming Language :: Rust",
46+
],
47+
zip_safe=False,
48+
)

0 commit comments

Comments
 (0)