Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.11.2] - 2026-07-28

### Changed

- Rotated the embedded Ed25519 license verification key. Pro licenses are
issued under the new key; licenses signed against the previous key no longer
verify and must be re-issued.

## [1.11.1] - 2026-07-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "redcon"
version = "1.11.1"
version = "1.11.2"
description = "Deterministic context budgeting for coding-agent workflows"
readme = "README.md"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion redcon/entitlements.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# licenses on purchase. Empty means "no key configured yet": every license is
# treated as unverified and the user stays free. Override for tests or a
# self-hosted signer via REDCON_LICENSE_PUBKEY.
_EMBEDDED_PUBLIC_KEY_B64 = "0FbwyahBFjKLGCktY3KK60sVOiaEWBZPDYpW4O1F4B0"
_EMBEDDED_PUBLIC_KEY_B64 = "NlLwPkG5vVnUEkGRzbMAPyCn7kI4WTVuhi6Mz51EctA"

_ENV_LICENSE = "REDCON_LICENSE_KEY"
_ENV_PUBKEY = "REDCON_LICENSE_PUBKEY"
Expand Down
Loading