Skip to content

Commit df29ba1

Browse files
committed
Release 1.1.3
1 parent e52deb6 commit df29ba1

11 files changed

Lines changed: 19 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.3] - 2026-06-11
9+
10+
### Fixed
11+
- Fixed desktop release notes so CLI users are directed to the published PyPI install path while desktop users keep the bundled backend.
12+
813
## [1.1.2] - 2026-06-11
914

1015
### Added
@@ -35,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3540
- Tmux and direct-layout workspace execution, SSH targets, opener integrations, diagnostics, and local project index.
3641
- Desktop release packaging with bundled backend sidecar and GitHub release verification.
3742

43+
[1.1.3]: https://github.com/GeminiLight/cc-branch/releases/tag/v1.1.3
3844
[1.1.2]: https://github.com/GeminiLight/cc-branch/releases/tag/v1.1.2
3945
[1.1.0]: https://github.com/GeminiLight/cc-branch/releases/tag/v1.1.0
4046
[1.0.0]: https://github.com/GeminiLight/cc-branch/releases/tag/v1.0.0

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@cc-branch/desktop",
33
"private": true,
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"type": "module",
66
"scripts": {
77
"tauri": "tauri",

apps/desktop/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cc-branch"
3-
version = "1.1.2"
3+
version = "1.1.3"
44
description = "CC Branch Desktop App"
55
authors = ["GeminiLight"]
66
license = "MIT"

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "CC Branch",
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"identifier": "com.gemini-light.cc-branch",
66
"build": {
77
"frontendDist": "../../web/dist",

apps/package-lock.json

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

apps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@cc-branch/apps",
33
"private": true,
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"type": "module",
66
"scripts": {
77
"dev": "cd web && npm run dev",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@cc-branch/web",
33
"private": true,
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

cc_branch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from .sessions import inspect_session, list_sessions, prune_sessions, restore_session
3434
from .state import load_state, merge_state, save_state
3535

36-
__version__ = "1.1.2"
36+
__version__ = "1.1.3"
3737

3838

3939
def main(argv: list[str] | None = None) -> int:

packaging/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cc-branch",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Multi-agent workspace orchestrator for shell and tmux runtimes",
55
"license": "MIT",
66
"homepage": "https://github.com/GeminiLight/cc-branch#readme",

0 commit comments

Comments
 (0)