diff --git a/CHANGELOG.md b/CHANGELOG.md
index a2442485..9ce8218c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+## [0.46.0](https://github.com/archgate/cli/compare/v0.45.7...v0.46.0) (2026-07-02)
+
+### ⚠ BREAKING CHANGES
+
+* **session-context:** per-editor list/show subcommands; remove --skip and its false premise (#446)
+
+### Features
+
+* **session-context:** per-editor list/show subcommands; remove --skip and its false premise ([#446](https://github.com/archgate/cli/issues/446)) ([dd96230](https://github.com/archgate/cli/commit/dd96230b8bffdc5044aac48fbb9fc74f046168ac))
+
+### Bug Fixes
+
+* **ci:** read POSTHOG_PROJECT_ID from secrets, not vars, in release annotation ([#443](https://github.com/archgate/cli/issues/443)) ([a53b305](https://github.com/archgate/cli/commit/a53b30507a139db915271095a5a29ccefbd7cecf))
+* detect opencode Desktop app installs, not just the CLI ([#439](https://github.com/archgate/cli/issues/439)) ([ed92b2b](https://github.com/archgate/cli/commit/ed92b2b0dbe86f2ec7767074882ccf95e053747f))
+* **hooks:** force bash shell for WorktreeCreate hook on Windows ([#442](https://github.com/archgate/cli/issues/442)) ([9da86cf](https://github.com/archgate/cli/commit/9da86cfac8ddf6c564fcf243e7f870df83a512e5))
+* **release:** cap breaking-change bumps to minor while pre-1.0 ([#447](https://github.com/archgate/cli/issues/447)) ([3df6c91](https://github.com/archgate/cli/commit/3df6c91972de196efdbf22e7830fa9d3b53f07d8)), closes [#446](https://github.com/archgate/cli/issues/446) [#440](https://github.com/archgate/cli/issues/440) [#440](https://github.com/archgate/cli/issues/440) [#440](https://github.com/archgate/cli/issues/440)
+* repair broken WorktreeCreate hook and add PR approval policy ([#441](https://github.com/archgate/cli/issues/441)) ([de5e97d](https://github.com/archgate/cli/commit/de5e97dcbd3b0f3d0d4e3a5b36ec0feb7bcd395c))
+* **session-context:** select top-level opencode sessions, add --root flag ([#445](https://github.com/archgate/cli/issues/445)) ([29b13f4](https://github.com/archgate/cli/commit/29b13f49fce76a5f7afdc9d6c5264ebe4e3c120c))
+
## [0.45.7](https://github.com/archgate/cli/compare/v0.45.6...v0.45.7) (2026-06-27)
### Bug Fixes
diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs
index 08091c47..9e133779 100644
--- a/docs/astro.config.mjs
+++ b/docs/astro.config.mjs
@@ -183,7 +183,7 @@ export default defineConfig({
applicationCategory: "DeveloperApplication",
applicationSubCategory: "Code Linting",
operatingSystem: "macOS, Linux, Windows",
- softwareVersion: "0.45.7",
+ softwareVersion: "0.46.0",
license: "https://github.com/archgate/cli/blob/main/LICENSE",
offers: { "@type": "Offer", price: "0", priceCurrency: "USD" },
url: "https://cli.archgate.dev",
diff --git a/docs/public/version.json b/docs/public/version.json
index 68addd11..9d747aa9 100644
--- a/docs/public/version.json
+++ b/docs/public/version.json
@@ -1 +1 @@
-{ "version": "v0.45.7" }
+{ "version": "v0.46.0" }
diff --git a/package.json b/package.json
index 59008c88..afbe6a91 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "archgate",
- "version": "0.45.7",
+ "version": "0.46.0",
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
"keywords": [
"adr",
diff --git a/shims/go/internal/shim/shim.go b/shims/go/internal/shim/shim.go
index 92aea167..941a12a4 100644
--- a/shims/go/internal/shim/shim.go
+++ b/shims/go/internal/shim/shim.go
@@ -16,7 +16,7 @@ import (
)
// Version is the archgate CLI version this shim downloads.
-const Version = "0.45.7"
+const Version = "0.46.0"
const (
releaseBaseURL = "https://github.com/archgate/cli/releases/download"
diff --git a/shims/maven/pom.xml b/shims/maven/pom.xml
index 27e3ce19..19f2266b 100644
--- a/shims/maven/pom.xml
+++ b/shims/maven/pom.xml
@@ -6,7 +6,7 @@
dev.archgate
archgate-cli
- 0.45.7
+ 0.46.0
jar
archgate-cli
diff --git a/shims/maven/src/main/java/dev/archgate/cli/Shim.java b/shims/maven/src/main/java/dev/archgate/cli/Shim.java
index ac604608..cf0c6809 100644
--- a/shims/maven/src/main/java/dev/archgate/cli/Shim.java
+++ b/shims/maven/src/main/java/dev/archgate/cli/Shim.java
@@ -30,7 +30,7 @@
*/
public final class Shim {
- private static final String VERSION = "0.45.7";
+ private static final String VERSION = "0.46.0";
private static final String BASE_URL = "https://github.com/archgate/cli/releases/download/v" + VERSION + "/";
private Shim() {}
diff --git a/shims/nuget/Archgate.Tool/Archgate.Tool.csproj b/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
index 42560e51..03980020 100644
--- a/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
+++ b/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
@@ -6,7 +6,7 @@
true
archgate
archgate
- 0.45.7
+ 0.46.0
Enforce Architecture Decision Records as executable rules — for both humans and AI agents
Archgate
Apache-2.0
diff --git a/shims/nuget/Archgate.Tool/Program.cs b/shims/nuget/Archgate.Tool/Program.cs
index be5a85df..09b4c37e 100644
--- a/shims/nuget/Archgate.Tool/Program.cs
+++ b/shims/nuget/Archgate.Tool/Program.cs
@@ -8,7 +8,7 @@ namespace Archgate.Tool;
internal static class Program
{
- private const string Version = "0.45.7";
+ private const string Version = "0.46.0";
private static readonly string CacheDir = Path.Join(
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
diff --git a/shims/pypi/archgate/_version.py b/shims/pypi/archgate/_version.py
index 1448401f..6f709872 100644
--- a/shims/pypi/archgate/_version.py
+++ b/shims/pypi/archgate/_version.py
@@ -1 +1 @@
-__version__ = "0.45.7"
+__version__ = "0.46.0"
diff --git a/shims/pypi/pyproject.toml b/shims/pypi/pyproject.toml
index 58bd6cf4..69c5cbbd 100644
--- a/shims/pypi/pyproject.toml
+++ b/shims/pypi/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "archgate"
-version = "0.45.7"
+version = "0.46.0"
description = "Enforce Architecture Decision Records as executable rules — for both humans and AI agents"
readme = "README.md"
requires-python = ">=3.8"
diff --git a/shims/rubygem/lib/archgate/version.rb b/shims/rubygem/lib/archgate/version.rb
index c020fe74..a7840afe 100644
--- a/shims/rubygem/lib/archgate/version.rb
+++ b/shims/rubygem/lib/archgate/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Archgate
- VERSION = "0.45.7"
+ VERSION = "0.46.0"
end