This is an automated email from the ASF dual-hosted git repository.

skrawcz pushed a commit to branch stefan/march-dev0
in repository https://gitbox.apache.org/repos/asf/hamilton.git

commit 8d1988c036be86dea17f3c1824bcdf0a4ff3d93a
Author: Stefan Krawczyk <[email protected]>
AuthorDate: Sun Mar 15 20:57:40 2026 -0700

    Adds dev0 version commits -- for releasing dev releases
---
 contrib/pyproject.toml                   | 4 ++--
 dev_tools/language_server/pyproject.toml | 4 ++--
 hamilton/version.py                      | 2 +-
 pyproject.toml                           | 8 ++++----
 ui/backend/pyproject.toml                | 5 ++---
 ui/sdk/pyproject.toml                    | 4 ++--
 6 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/contrib/pyproject.toml b/contrib/pyproject.toml
index 7ed0247e..c2988863 100644
--- a/contrib/pyproject.toml
+++ b/contrib/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "apache-hamilton-contrib"
-version = "0.0.8"
+version = "0.1.0.dev0"
 description = "Apache Hamilton's user contributed shared dataflow library."
 readme = "README.md"
 requires-python = ">=3.10, <4"
@@ -44,7 +44,7 @@ classifiers = [
     "Programming Language :: Python :: 3.14",
 ]
 dependencies = [
-    "apache-hamilton",
+    "apache-hamilton==1.90.0.dev0",
 ]
 
 [project.optional-dependencies]
diff --git a/dev_tools/language_server/pyproject.toml 
b/dev_tools/language_server/pyproject.toml
index 0e2ee1e7..aa657c37 100644
--- a/dev_tools/language_server/pyproject.toml
+++ b/dev_tools/language_server/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "apache-hamilton-lsp"
-version = "0.1.0"
+version = "0.2.0.dev0"
 description = "Apache Hamilton Language Server powering IDE features."
 readme = "README.md"
 requires-python = ">=3.10, <4"
@@ -54,7 +54,7 @@ classifiers = [
 ]
 dependencies = [
     "pygls>=1.3.1",
-    "apache-hamilton[visualization]>=1.56",
+    "apache-hamilton[visualization]==1.90.0.dev0",
 ]
 
 [project.urls]
diff --git a/hamilton/version.py b/hamilton/version.py
index de4eb0f2..c3b9a132 100644
--- a/hamilton/version.py
+++ b/hamilton/version.py
@@ -15,4 +15,4 @@
 # specific language governing permissions and limitations
 # under the License.
 
-VERSION = (1, 89, 0)
+VERSION = (1, 90, 0, "dev0")
diff --git a/pyproject.toml b/pyproject.toml
index a87f80c9..a02476e1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "apache-hamilton"
-version = "1.89.0"  # NOTE: keep this in sync with hamilton/version.py
+version = "1.90.0.dev0"  # NOTE: keep this in sync with hamilton/version.py
 # TODO: flip back to dynamic once hamilton version is a string. Flit doesn't 
handle tuples.
 # dynamic = ["version"]
 description = "Apache Hamilton (incubating) is a lightweight Python library 
for directed acyclic graphs (DAGs) of transformations. Your DAG is 
**portable**; it runs anywhere Python runs, whether it's a script, notebook, 
Airflow pipeline, FastAPI server, etc. Your DAG is **expressive**; Apache 
Hamilton has extensive features to define and modify the execution of a DAG 
(e.g., data validation, experiment tracking, remote execution)."
@@ -66,7 +66,7 @@ experiments = [
   "fastui",
   "uvicorn",
 ]
-lsp = ["sf-hamilton-lsp"]
+lsp = ["apache-hamilton-lsp==0.2.0.dev0"]
 openlineage = ["openlineage-python"]
 pandera = ["pandera"]
 pydantic = ["pydantic>=2.0"]
@@ -76,12 +76,12 @@ pyspark = [
 ]
 ray = ["ray>=2.0.0; python_version < '3.14'", "pyarrow"]
 rich = ["rich"]
-sdk = ["sf-hamilton-sdk"]
+sdk = ["apache-hamilton-sdk==0.9.0.dev0"]
 slack = ["slack-sdk"]
 
 mcp = ["fastmcp>=3.0.0,<4"]
 tqdm = ["tqdm"]
-ui = ["sf-hamilton-ui"]
+ui = ["apache-hamilton-ui==0.1.0.dev0"]
 
 # vaex -- on >=py3.11 only core part available 
https://github.com/vaexio/vaex/pull/2331#issuecomment-2437198176
 vaex = [
diff --git a/ui/backend/pyproject.toml b/ui/backend/pyproject.toml
index 88342f56..d2301f45 100644
--- a/ui/backend/pyproject.toml
+++ b/ui/backend/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "apache-hamilton-ui"
-version = "0.0.17"
+version = "0.1.0.dev0"
 description = "Apache Hamilton UI tracking server for dataflow visualization 
and monitoring."
 requires-python = ">=3.10, <4"
 license = "Apache-2.0"
@@ -56,8 +56,7 @@ dependencies = [
     "psycopg2-binary",
     "pydantic>=2.0.0",
     "requests>=2.32.0",
-    # "apache-hamilton>=1.58.0",  # TODO once we publish properly fix this.
-    "sf-hamilton>=1.58.0",
+    "apache-hamilton==1.90.0.dev0",
     "typer",
 ]
 
diff --git a/ui/sdk/pyproject.toml b/ui/sdk/pyproject.toml
index 8c07ed03..2bfc45ce 100644
--- a/ui/sdk/pyproject.toml
+++ b/ui/sdk/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "apache-hamilton-sdk"
-version = "0.8.0"
+version = "0.9.0.dev0"
 description = "Apache Hamilton SDK for reading and writing to the Apache 
Hamilton backend APIs that support the UI."
 readme = "README.md"
 requires-python = ">=3.10, <4"
@@ -51,7 +51,7 @@ dependencies = [
     "loguru",
     "posthog",
     "requests",
-    "apache-hamilton>=1.43.0",
+    "apache-hamilton==1.90.0.dev0",
     "sqlglot",
 ]
 

Reply via email to