Skip to content

Commit 73cebae

Browse files
committed
Bump to v0.23.1 instead of 0.23.0
1 parent 45e9274 commit 73cebae

5 files changed

Lines changed: 13 additions & 6 deletions

File tree

docker/jupyter_omnipy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SHELL ["conda", "run", "--no-capture-output", "-n", "omnipy", "/bin/bash", "-c"]
1818

1919
RUN mamba install python=3.12 ipykernel ipywidgets git -y && mamba clean -ay
2020
RUN pip cache purge
21-
RUN pip install omnipy==0.23.0
21+
RUN pip install omnipy==0.23.1
2222
RUN pip install itables
2323
RUN pip install ipy
2424

docs/release_notes.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
## Omnipy v0.23.0
1+
## Omnipy v0.23.1
22

3-
_Release date: Apr 22, 2026_
3+
_Release date: Apr 26, 2026_
4+
5+
Replaces the incorrectly versioned 0.23 release (should have been 0.23.0).
6+
7+
8+
## Omnipy v0.23
9+
10+
_Release date: Yanked due to incorrect version format (0.23 instead of 0.23.0)_
411

512
Omnipy v0.23.0 prioritizes under-the-hood improvements and refinement of
613
existing functionality over providing major new features.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "omnipy"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
description = "Omnipy is a type-driven Python library for data conversion, parsing and wrangling; tool and web service interoperability; and scalable dataflow orchestration"
55
readme = "docs/readme.md"
66
requires-python = ">=3.10,<3.14"

src/omnipy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.23.0'
1+
__version__ = '0.23.1'
22

33
import os
44

tests/test_omnipy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '0.23.0'
5+
assert __version__ == '0.23.1'

0 commit comments

Comments
 (0)