Skip to content

Commit 7806525

Browse files
authored
chore: update release version (#202)
Signed-off-by: Sidhant Kohli <[email protected]>
1 parent f46fbed commit 7806525

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

pynumaflow/info/types.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ class ContainerType(str, Enum):
7777
# To update this value, please follow the instructions for MINIMUM_NUMAFLOW_VERSION in
7878
# https://github.com/numaproj/numaflow-rs/blob/main/src/shared.rs
7979
MINIMUM_NUMAFLOW_VERSION = {
80-
ContainerType.Sourcer: "1.3.0-z",
81-
ContainerType.Sourcetransformer: "1.3.0-z",
82-
ContainerType.Sinker: "1.3.0-z",
83-
ContainerType.Mapper: "1.3.0-z",
84-
ContainerType.Reducer: "1.3.0-z",
85-
ContainerType.Reducestreamer: "1.3.0-z",
86-
ContainerType.Sessionreducer: "1.3.0-z",
87-
ContainerType.Sideinput: "1.3.0-z",
88-
ContainerType.Fbsinker: "1.3.0-z",
80+
ContainerType.Sourcer: "1.4.0-z",
81+
ContainerType.Sourcetransformer: "1.4.0-z",
82+
ContainerType.Sinker: "1.4.0-z",
83+
ContainerType.Mapper: "1.4.0-z",
84+
ContainerType.Reducer: "1.4.0-z",
85+
ContainerType.Reducestreamer: "1.4.0-z",
86+
ContainerType.Sessionreducer: "1.4.0-z",
87+
ContainerType.Sideinput: "1.4.0-z",
88+
ContainerType.Fbsinker: "1.4.0-z",
8989
}
9090

9191

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pynumaflow"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "Provides the interfaces of writing Python User Defined Functions and Sinks for NumaFlow."
55
authors = ["NumaFlow Developers"]
66
readme = "README.md"

tests/test_info_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_success_write_info(self):
3939
self.assertEqual(file_data["metadata"]["CPU_LIMIT"], "3")
4040
self.assertEqual(file_data["protocol"], "uds")
4141
self.assertEqual(file_data["language"], "python")
42-
self.assertEqual(file_data["minimum_numaflow_version"], "1.3.0-z")
42+
self.assertEqual(file_data["minimum_numaflow_version"], "1.4.0-z")
4343

4444
def test_metadata_env(self):
4545
test_file = "/tmp/test_info_server"

0 commit comments

Comments
 (0)