Skip to content

Commit c8d8e0a

Browse files
committed
chore(python): Release 0.14.4
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent fb84612 commit c8d8e0a

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.github/workflows/python-release.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
uses: actions/upload-artifact@v4
4040
with:
4141
name: sdist
42+
if-no-files-found: error
4243
path: dist
4344

4445
macos-x86_64:
@@ -62,6 +63,7 @@ jobs:
6263
uses: actions/upload-artifact@v4
6364
with:
6465
name: wheel-macos-x86_64
66+
if-no-files-found: error
6567
path: dist
6668

6769
macos-universal:
@@ -84,6 +86,7 @@ jobs:
8486
uses: actions/upload-artifact@v4
8587
with:
8688
name: wheel-macos-universal
89+
if-no-files-found: error
8790
path: dist
8891

8992
windows:
@@ -111,6 +114,7 @@ jobs:
111114
uses: actions/upload-artifact@v4
112115
with:
113116
name: wheel-windows-${{ matrix.target }}
117+
if-no-files-found: error
114118
path: dist
115119

116120
linux:
@@ -138,6 +142,7 @@ jobs:
138142
uses: actions/upload-artifact@v4
139143
with:
140144
name: wheel-linux-${{ matrix.target }}
145+
if-no-files-found: error
141146
path: dist
142147

143148
linux-cross:
@@ -172,6 +177,7 @@ jobs:
172177
uses: actions/upload-artifact@v4
173178
with:
174179
name: wheel-linux-cross-${{ matrix.target }}
180+
if-no-files-found: error
175181
path: dist
176182

177183
musllinux:
@@ -204,6 +210,7 @@ jobs:
204210
uses: actions/upload-artifact@v4
205211
with:
206212
name: wheel-musllinux-${{ matrix.target }}
213+
if-no-files-found: error
207214
path: dist
208215

209216
musllinux-cross:
@@ -240,6 +247,7 @@ jobs:
240247
uses: actions/upload-artifact@v4
241248
with:
242249
name: wheel-musllinux-cross-${{ matrix.platform.target }}-${{ matrix.platform.arch }}
250+
if-no-files-found: error
243251
path: dist
244252

245253
pypy:
@@ -275,6 +283,7 @@ jobs:
275283
uses: actions/upload-artifact@v4
276284
with:
277285
name: wheel-pypy-${{ matrix.os }}-${{ matrix.target }}-${{ matrix.python-version }}
286+
if-no-files-found: error
278287
path: dist
279288

280289
pyodide:
@@ -300,7 +309,8 @@ jobs:
300309
uses: actions/upload-artifact@v4
301310
with:
302311
name: wheel-pyodide
303-
path: dist
312+
if-no-files-found: error
313+
path: ./bindings/python/dist
304314

305315
release:
306316
name: Release

bindings/python/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.14.4] - 2024-12-27
6+
57
### Added
68

79
- Support & build for PyOdide. [#411](https://github.com/Stranger6667/css-inline/pull/411)
@@ -432,7 +434,8 @@
432434

433435
- Initial public release
434436

435-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.3...HEAD
437+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.4...HEAD
438+
[0.14.4]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.3...python-v0.14.4
436439
[0.14.3]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.2...python-v0.14.3
437440
[0.14.2]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.1...python-v0.14.2
438441
[0.14.1]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.0...python-v0.14.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.14.3"
3+
version = "0.14.4"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.71.1"

0 commit comments

Comments
 (0)