Skip to content

Commit de89aa6

Browse files
committed
Update version numbers to 0.1.1 across multiple files and remove outdated CHANGELOG.md
1 parent 248f264 commit de89aa6

6 files changed

Lines changed: 7 additions & 49 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +0,0 @@
1-
# Changelog
2-
3-
本项目的所有重要更改都将记录在此文件中。
4-
5-
格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/)
6-
版本号遵循 [Semantic Versioning](https://semver.org/lang/zh-CN/)
7-
8-
## [Unreleased]
9-
10-
### Added
11-
- 初始版本的 Pulsing Actor System
12-
- 基于 Gossip 协议的集群发现(SWIM)
13-
- HTTP/2 传输层
14-
- PyO3 Python 绑定
15-
- 流式消息支持(StreamMessage)
16-
- CLI 工具(`pulsing` 命令)
17-
18-
### Features
19-
- **Actor System**
20-
- 位置透明的 ActorRef
21-
- Ask/Tell 消息模式
22-
- Actor 生命周期管理(on_start/on_stop)
23-
- 流式请求和响应
24-
- **Cluster**
25-
- 零外部依赖的 Gossip 协议
26-
- 自动故障检测
27-
- Actor 位置注册和发现
28-
- **Python API**
29-
- 完整的异步 Python API
30-
- 与 asyncio 原生集成
31-
- LLM serving actors(Router、Worker)
32-
33-
## [0.1.0] - 2024-12-24
34-
35-
### Added
36-
- 项目初始化
37-
- Actor System 核心实现
38-
- Python 绑定
39-
- 基础文档和示例
40-
41-
[Unreleased]: https://github.com/DeepLink-org/Pulsing/compare/v0.1.0...HEAD
42-
[0.1.0]: https://github.com/DeepLink-org/Pulsing/releases/tag/v0.1.0

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.0"
10+
version = "0.1.1"
1111
edition = "2021"
1212
description = "Pulsing - Distributed Actor Framework"
1313
authors = ["Reiase <reiase@gmail.com>"]

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.0"
3+
version = "0.1.1"
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.0"
3+
version = "0.1.1"
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.0"
23+
__version__ = "0.1.1"
2424

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

0 commit comments

Comments
 (0)