Skip to content

Commit

Permalink
chore(python): Release 0.14.4
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Dygalo <[email protected]>
  • Loading branch information
Stranger6667 committed Dec 27, 2024
1 parent fb84612 commit c8d8e0a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: sdist
if-no-files-found: error
path: dist

macos-x86_64:
Expand All @@ -62,6 +63,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-macos-x86_64
if-no-files-found: error
path: dist

macos-universal:
Expand All @@ -84,6 +86,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-macos-universal
if-no-files-found: error
path: dist

windows:
Expand Down Expand Up @@ -111,6 +114,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-windows-${{ matrix.target }}
if-no-files-found: error
path: dist

linux:
Expand Down Expand Up @@ -138,6 +142,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-linux-${{ matrix.target }}
if-no-files-found: error
path: dist

linux-cross:
Expand Down Expand Up @@ -172,6 +177,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-linux-cross-${{ matrix.target }}
if-no-files-found: error
path: dist

musllinux:
Expand Down Expand Up @@ -204,6 +210,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-musllinux-${{ matrix.target }}
if-no-files-found: error
path: dist

musllinux-cross:
Expand Down Expand Up @@ -240,6 +247,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-musllinux-cross-${{ matrix.platform.target }}-${{ matrix.platform.arch }}
if-no-files-found: error
path: dist

pypy:
Expand Down Expand Up @@ -275,6 +283,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-pypy-${{ matrix.os }}-${{ matrix.target }}-${{ matrix.python-version }}
if-no-files-found: error
path: dist

pyodide:
Expand All @@ -300,7 +309,8 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheel-pyodide
path: dist
if-no-files-found: error
path: ./bindings/python/dist

release:
name: Release
Expand Down
5 changes: 4 additions & 1 deletion bindings/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.14.4] - 2024-12-27

### Added

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

- Initial public release

[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.3...HEAD
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.4...HEAD
[0.14.4]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.3...python-v0.14.4
[0.14.3]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.2...python-v0.14.3
[0.14.2]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.1...python-v0.14.2
[0.14.1]: https://github.com/Stranger6667/css-inline/compare/python-v0.14.0...python-v0.14.1
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "css-inline-python"
version = "0.14.3"
version = "0.14.4"
authors = ["Dmitry Dygalo <[email protected]>"]
edition = "2021"
rust-version = "1.71.1"
Expand Down

0 comments on commit c8d8e0a

Please sign in to comment.