Skip to content

Commit

Permalink
chore: update release version (#202)
Browse files Browse the repository at this point in the history
Signed-off-by: Sidhant Kohli <[email protected]>
  • Loading branch information
kohlisid authored Nov 8, 2024
1 parent f46fbed commit 7806525
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions pynumaflow/info/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ class ContainerType(str, Enum):
# To update this value, please follow the instructions for MINIMUM_NUMAFLOW_VERSION in
# https://github.com/numaproj/numaflow-rs/blob/main/src/shared.rs
MINIMUM_NUMAFLOW_VERSION = {
ContainerType.Sourcer: "1.3.0-z",
ContainerType.Sourcetransformer: "1.3.0-z",
ContainerType.Sinker: "1.3.0-z",
ContainerType.Mapper: "1.3.0-z",
ContainerType.Reducer: "1.3.0-z",
ContainerType.Reducestreamer: "1.3.0-z",
ContainerType.Sessionreducer: "1.3.0-z",
ContainerType.Sideinput: "1.3.0-z",
ContainerType.Fbsinker: "1.3.0-z",
ContainerType.Sourcer: "1.4.0-z",
ContainerType.Sourcetransformer: "1.4.0-z",
ContainerType.Sinker: "1.4.0-z",
ContainerType.Mapper: "1.4.0-z",
ContainerType.Reducer: "1.4.0-z",
ContainerType.Reducestreamer: "1.4.0-z",
ContainerType.Sessionreducer: "1.4.0-z",
ContainerType.Sideinput: "1.4.0-z",
ContainerType.Fbsinker: "1.4.0-z",
}


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pynumaflow"
version = "0.8.0"
version = "0.9.0"
description = "Provides the interfaces of writing Python User Defined Functions and Sinks for NumaFlow."
authors = ["NumaFlow Developers"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_info_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_success_write_info(self):
self.assertEqual(file_data["metadata"]["CPU_LIMIT"], "3")
self.assertEqual(file_data["protocol"], "uds")
self.assertEqual(file_data["language"], "python")
self.assertEqual(file_data["minimum_numaflow_version"], "1.3.0-z")
self.assertEqual(file_data["minimum_numaflow_version"], "1.4.0-z")

def test_metadata_env(self):
test_file = "/tmp/test_info_server"
Expand Down

0 comments on commit 7806525

Please sign in to comment.