Skip to content

Commit 03e7326

Browse files
committed
Update version numbers to 0.1.2 across multiple files, reflecting the latest release of the Pulsing framework and its associated packages.
1 parent de89aa6 commit 03e7326

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ resolver = "3"
77
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
88

99
[workspace.package]
10-
version = "0.1.1"
10+
version = "0.1.2"
1111
edition = "2021"
1212
description = "Pulsing - Distributed Actor Framework"
1313
authors = ["Reiase <reiase@gmail.com>"]

crates/pulsing-bench-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pulsing-bench"
3-
version = "0.1.0"
3+
version = "0.1.2"
44
description = "Pulsing Benchmark - LLM Inference Benchmark Tool"
55
readme = "../../README.md"
66
authors = [

docs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pulsing-docs"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Documentation for Pulsing - Backbone for Distributed AI Systems"
55
readme = "README.md"
66
requires-python = ">=3.10"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pulsing"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Pulsing: Backbone for distributed AI systems. Actor runtime with streaming, zero dependencies, and built-in discovery."
55
readme = "README.md"
66
authors = [

python/pulsing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def incr(self): self.value += 1; return self.value
2020
import asyncio
2121
from typing import Any
2222

23-
__version__ = "0.1.1"
23+
__version__ = "0.1.2"
2424

2525
# Import from pulsing.core
2626
from pulsing.core import (

0 commit comments

Comments
 (0)