Skip to content

Commit b6f9bb5

Browse files
authored
chore(release): bump workspace versions for v1.1.0 (#512)
Signed-off-by: Simo Lin <linsimo.mark@gmail.com>
1 parent 7bfa889 commit b6f9bb5

20 files changed

Lines changed: 113 additions & 102 deletions

File tree

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ resolver = "2"
44

55
[workspace.dependencies]
66
# Internal workspace crates
7-
openai-protocol = { version = "1.1.0", path = "protocols" }
7+
openai-protocol = { version = "1.2.0", path = "protocols" }
88
reasoning-parser = { version = "1.2.0", path = "reasoning_parser" }
9-
tool-parser = { version = "1.1.0", path = "tool_parser" }
10-
wfaas = { version = "1.0.1", path = "workflow" }
11-
llm-tokenizer = { version = "1.1.0", path = "tokenizer" }
12-
smg-auth = { version = "1.1.0", path = "auth" }
13-
smg-mcp = { version = "2.0.0", path = "mcp" }
14-
kv-index = { version = "1.0.0", path = "kv_index" }
9+
tool-parser = { version = "1.1.1", path = "tool_parser" }
10+
wfaas = { version = "1.0.2", path = "workflow" }
11+
llm-tokenizer = { version = "1.2.0", path = "tokenizer" }
12+
smg-auth = { version = "1.1.1", path = "auth" }
13+
smg-mcp = { version = "2.1.0", path = "mcp" }
14+
kv-index = { version = "1.0.1", path = "kv_index" }
1515
smg-data-connector = { version = "2.0.0", path = "data_connector", package = "data-connector" }
16-
llm-multimodal = { version = "1.1.0", path = "multimodal" }
17-
smg-wasm = { version = "1.0.0", path = "wasm", package = "smg-wasm" }
18-
smg-mesh = { version = "1.1.0", path = "mesh", package = "smg-mesh" }
19-
smg-grpc-client = { version = "1.1.0", path = "grpc_client" }
16+
llm-multimodal = { version = "1.2.0", path = "multimodal" }
17+
smg-wasm = { version = "1.0.1", path = "wasm", package = "smg-wasm" }
18+
smg-mesh = { version = "1.1.1", path = "mesh", package = "smg-mesh" }
19+
smg-grpc-client = { version = "1.2.0", path = "grpc_client" }
2020

2121
# Shared dependencies
2222
anyhow = "1.0"

Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,7 @@ VERSION_FILES := model_gateway/Cargo.toml \
139139
bindings/golang/Cargo.toml \
140140
bindings/python/Cargo.toml \
141141
bindings/python/pyproject.toml \
142-
bindings/python/src/smg/version.py \
143-
grpc_client/python/pyproject.toml \
144-
grpc_client/python/smg_grpc_proto/__init__.py
142+
bindings/python/src/smg/version.py
145143

146144
show-version: ## Show current version across all files
147145
@echo "Current versions:"
@@ -150,8 +148,6 @@ show-version: ## Show current version across all files
150148
@echo " bindings/python/Cargo.toml: $$(grep -m1 '^version = ' bindings/python/Cargo.toml | sed 's/version = "\(.*\)"/\1/')"
151149
@echo " bindings/python/pyproject.toml: $$(grep -m1 '^version = ' bindings/python/pyproject.toml | sed 's/version = "\(.*\)"/\1/')"
152150
@echo " bindings/python/.../version.py: $$(grep '__version__' bindings/python/src/smg/version.py | sed 's/__version__ = "\(.*\)"/\1/')"
153-
@echo " grpc_client/python/pyproject.toml: $$(grep -m1 '^version = ' grpc_client/python/pyproject.toml | sed 's/version = "\(.*\)"/\1/')"
154-
@echo " grpc_client/python/.../__init__.py: $$(grep '__version__' grpc_client/python/smg_grpc_proto/__init__.py | sed 's/__version__ = "\(.*\)"/\1/')"
155151

156152
bump-version: ## Bump version across all files (usage: make bump-version VERSION=0.3.3)
157153
@if [ -z "$(VERSION)" ]; then \
@@ -173,18 +169,12 @@ bump-version: ## Bump version across all files (usage: make bump-version VERSION
173169
@sed -i.bak 's/^version = ".*"/version = "$(VERSION)"/' bindings/python/pyproject.toml && rm -f bindings/python/pyproject.toml.bak
174170
@# Update version.py
175171
@sed -i.bak 's/__version__ = ".*"/__version__ = "$(VERSION)"/' bindings/python/src/smg/version.py && rm -f bindings/python/src/smg/version.py.bak
176-
@# Update grpc_client/python/pyproject.toml
177-
@sed -i.bak 's/^version = ".*"/version = "$(VERSION)"/' grpc_client/python/pyproject.toml && rm -f grpc_client/python/pyproject.toml.bak
178-
@# Update grpc_client/python/smg_grpc_proto/__init__.py
179-
@sed -i.bak 's/__version__ = ".*"/__version__ = "$(VERSION)"/' grpc_client/python/smg_grpc_proto/__init__.py && rm -f grpc_client/python/smg_grpc_proto/__init__.py.bak
180172
@echo "Version updated to $(VERSION) in all files:"
181173
@echo " - model_gateway/Cargo.toml"
182174
@echo " - bindings/golang/Cargo.toml"
183175
@echo " - bindings/python/Cargo.toml"
184176
@echo " - bindings/python/pyproject.toml"
185177
@echo " - bindings/python/src/smg/version.py"
186-
@echo " - grpc_client/python/pyproject.toml"
187-
@echo " - grpc_client/python/smg_grpc_proto/__init__.py"
188178
@echo ""
189179
@echo "Verify with: make show-version"
190180

auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "smg-auth"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
edition = "2021"
55
description = "Authentication and authorization for control plane APIs"
66
license = "Apache-2.0"

bindings/golang/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "smg-golang"
3-
version = "0.4.0"
3+
version = "1.1.0"
44
edition = "2021"
55

66
[lib]

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "smg-python"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
edition = "2021"
55

66
[lib]

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "smg"
7-
version = "1.0.1"
7+
version = "1.1.0"
88
description = "High-performance Rust-based inference gateway for large-scale LLM deployments"
99
authors = [
1010
{name = "Simo Lin", email = "linsimo.mark@gmail.com"},

bindings/python/src/smg/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0"
1+
__version__ = "1.1.0"

grpc_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "smg-grpc-client"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55
description = "gRPC clients for SGLang and vLLM backends"
66
license = "Apache-2.0"

grpc_client/python/smg_grpc_proto/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""SMG gRPC Proto - Protocol definitions for SGLang, vLLM, and TRT-LLM."""
22

3-
__version__ = "0.3.3"
3+
__version__ = "0.4.0"
44

55
# Re-export generated modules for convenient access
66
# These imports will work after the package is built (stubs generated at build time)

kv_index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kv-index"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
description = "Radix tree implementations for prefix matching and cache-aware routing"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)