chore(release): bump version to 0.2.0

Bump pyproject, panel/package.json, roboco.__version__, and config.app_version
to 0.2.0, and cut the CHANGELOG [Released] bucket as [0.2.0] - 2026-06-11
(rate-limit handling, token usage & cost analytics, /ws/system, and the
workspace/gate fixes).
This commit is contained in:
Renn F
2026-06-11 19:10:15 +02:00
parent 9cbfb5f0dd
commit 27fa74be70
5 changed files with 8 additions and 5 deletions
+4 -1
View File
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Released] ## [Released]
## [0.2.0] - 2026-06-11
### Added ### Added
- **Provider rate-limit handling.** End-to-end backpressure for LLM-provider - **Provider rate-limit handling.** End-to-end backpressure for LLM-provider
@@ -62,5 +64,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Next.js control panel (`panel/`) behind a single nginx entry point. - Next.js control panel (`panel/`) behind a single nginx entry point.
- Multi-agent workspace management with per-project encrypted git tokens. - Multi-agent workspace management with per-project encrypted git tokens.
[Released]: https://github.com/rennf93/roboco/compare/v0.1.0...HEAD [Released]: https://github.com/rennf93/roboco/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/rennf93/roboco/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/rennf93/roboco/releases/tag/v0.1.0 [0.1.0]: https://github.com/rennf93/roboco/releases/tag/v0.1.0
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "roboco-panel", "name": "roboco-panel",
"version": "0.1.0", "version": "0.2.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "roboco" name = "roboco"
version = "0.1.0" version = "0.2.0"
description = "AI Agents Company - A virtual organization of AI agents functioning as a software development workforce" description = "AI Agents Company - A virtual organization of AI agents functioning as a software development workforce"
authors = [ authors = [
{name = "Renzo Franceschini", email = "rennf93@users.noreply.github.com"} {name = "Renzo Franceschini", email = "rennf93@users.noreply.github.com"}
+1 -1
View File
@@ -5,7 +5,7 @@ A virtual organization of 18 AI agents + 1 human CEO,
designed to operate as a complete software development workforce. designed to operate as a complete software development workforce.
""" """
__version__ = "0.1.0" __version__ = "0.2.0"
# Core exports # Core exports
from roboco.config import settings from roboco.config import settings
+1 -1
View File
@@ -28,7 +28,7 @@ class Settings(BaseSettings):
# ========================================================================== # ==========================================================================
# Application # Application
# ========================================================================== # ==========================================================================
app_version: str = "0.1.0" app_version: str = "0.2.0"
debug: bool = False debug: bool = False
environment: str = Field( environment: str = Field(
default="development", pattern="^(development|staging|production)$" default="development", pattern="^(development|staging|production)$"