Skip to content

Commit 0aab00a

Browse files
committed
chore(release): v26.4.0
1 parent ff7c9f6 commit 0aab00a

6 files changed

Lines changed: 15 additions & 13 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
tag:
1010
description: Release tag to create
1111
required: true
12-
default: v26.3.0
12+
default: v26.4.0
1313
type: string
1414

1515
permissions:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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

77
## [Unreleased]
8+
9+
## [26.4.0] - 2026-07-21
810
* refactor(coder)!: remove the legacy `coder ssh` gateway (nested remote Flock, snapshot polling, tracker-only sidebar, flock-coder-remote layout); native remote-agent sessions are the only Coder integration
911
* fix(coder): publish native Coder session agent state to the cross-session bus so other sessions' sidebars stay live
1012
* feat: allow tabs to have different sizes if clients aren't focused on the same one (https://github.com/zellij-org/zellij/pull/5133)

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ rust-version.workspace = true
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[dependencies]
18-
zellij-client = { path = "zellij-client/", version = "26.3.0" }
19-
zellij-server = { path = "zellij-server/", version = "26.3.0" }
18+
zellij-client = { path = "zellij-client/", version = "26.4.0" }
19+
zellij-server = { path = "zellij-server/", version = "26.4.0" }
2020
zellij-utils = { workspace = true }
2121
anyhow = { workspace = true }
2222
clap = { workspace = true }
@@ -77,7 +77,7 @@ members = [
7777
edition = "2021"
7878
license = "MIT"
7979
repository = "https://github.com/abeljim8am/flock"
80-
version = "26.3.0"
80+
version = "26.4.0"
8181
# NOTE: When updating this, modify `channel` in `rust-toolchain.toml` accordingly
8282
rust-version = "1.92"
8383

@@ -121,7 +121,7 @@ windows-sys = { version = "0.59", default-features = false }
121121
names = { version = "0.14.0", default-features = false }
122122
include_dir = { version = "0.7.3", default-features = false }
123123
sha2 = { version = "0.10", default-features = false }
124-
zellij-utils = { path = "zellij-utils/", version = "26.3.0" }
124+
zellij-utils = { path = "zellij-utils/", version = "26.4.0" }
125125

126126
[profile.dev-opt]
127127
inherits = "dev"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ unless a Flock feature says otherwise.
3333

3434
Download the archive, ZIP, or Windows installer for your platform from the
3535
[latest Flock release](https://github.com/abeljim8am/flock/releases/latest).
36-
The current release is `v26.3.0`; `v26.0.0` was the first Flock release.
36+
The current release is `v26.4.0`; `v26.0.0` was the first Flock release.
3737

3838
To build from source:
3939

default-plugins/flock-selector/src/coder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub const TEMPLATE_LIST_CONTEXT_KEY: &str = "flock_coder_template_list";
1414
pub const CREATE_CONTEXT_KEY: &str = "flock_coder_create";
1515
pub const BOOTSTRAP_CONTEXT_KEY: &str = "flock_coder_bootstrap";
1616

17-
pub const RELEASE_TAG: &str = "v26.3.0";
17+
pub const RELEASE_TAG: &str = "v26.4.0";
1818
pub const RELEASE_BASE_URL: &str = "https://github.com/abeljim8am/flock/releases/download";
1919

2020
const CACHE_PATH: &str = "/data/coder-workspaces.json";

0 commit comments

Comments
 (0)