diff --git a/CHANGELOG.md b/CHANGELOG.md index bbcec76..626316a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - 🐞 Bugfixes - 🔧 Others -## 1.1.0 - TBD +## 1.1.0 - 2024-11-23 - 🚀 [Python] Added thread support with `ThreadPipe` and `ThreadWait`. See [README.md](README.md) for more details. - ✨ [Python] Keep same `PipeStart` object throughout the pipe for improved performances diff --git a/README.md b/README.md index 4637332..48c0e32 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Tests](https://github.com/Jordan-Kowal/pipe-operator/actions/workflows/tests.yml/badge.svg?branch=main) ![Build](https://github.com/Jordan-Kowal/pipe-operator/actions/workflows/publish_package.yml/badge.svg?event=release) ![Coverage](https://badgen.net/badge/coverage/%3E90%25/pink) -![Tag](https://badgen.net/badge/tag/1.0.4/orange) +![Tag](https://badgen.net/badge/tag/1.1.0/orange) ![Python](https://badgen.net/badge/python/3.9%20|%203.10%20|%203.11%20|%203.12|%203.13) ![Licence](https://badgen.net/badge/licence/MIT) diff --git a/TODO.md b/TODO.md index a7d7978..24dd2a6 100644 --- a/TODO.md +++ b/TODO.md @@ -8,6 +8,5 @@ ## Python implementation - Aliases -- Change file struct - Add pipe support for Async - Add pipe support for Multiprocessing? diff --git a/pyproject.toml b/pyproject.toml index 4ebf9a1..f029be8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pipe_operator" -version = "1.0.4" +version = "1.1.0" requires-python = ">=3.9" description = "Elixir's pipe operator in Python" dependencies = ["typing-extensions>=4.12.2"] diff --git a/uv.lock b/uv.lock index 2871eb0..11df520 100644 --- a/uv.lock +++ b/uv.lock @@ -510,7 +510,7 @@ wheels = [ [[package]] name = "pipe-operator" -version = "1.0.4" +version = "1.1.0" source = { editable = "." } dependencies = [ { name = "typing-extensions" },