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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.13"
".": "0.0.14"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.0.14](https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.0.13...codex-pooler-v0.0.14) (2026-06-14)


### Features

* **admin:** add project resource menu ([8d6864d](https://github.com/icoretech/codex-pooler/commit/8d6864dfe0ee54e17631b7bae595b58038ae6743))


### Bug Fixes

* **admin:** keep worker card actions aligned ([0afc383](https://github.com/icoretech/codex-pooler/commit/0afc383e264eb3d5afcf272c4742df8d71a7eae6))
* **admin:** report settled usage costs ([3378d49](https://github.com/icoretech/codex-pooler/commit/3378d4980d06b2320113fb5b8c0190ce0a78de05))
* **dev:** isolate local postgres env ([ac65437](https://github.com/icoretech/codex-pooler/commit/ac65437af2f24a40635e2790533c944893c16602))

## [0.0.13](https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.0.12...codex-pooler-v0.0.13) (2026-06-13)


Expand Down
2 changes: 1 addition & 1 deletion docs-site/src/content/docs/deployment/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ less explicit for a real install.

```bash
export CODEX_POOLER_IMAGE=ghcr.io/icoretech/codex-pooler
export CODEX_POOLER_IMAGE_TAG=0.0.13
export CODEX_POOLER_IMAGE_TAG=0.0.14
scripts/self-host/generate-env.sh
```

Expand Down
6 changes: 3 additions & 3 deletions docs-site/src/content/docs/deployment/helm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Set an explicit immutable image tag for real deployments. Don't rely on `latest`
```yaml
image:
repository: ghcr.io/icoretech/codex-pooler
tag: 0.0.13
tag: 0.0.14
pullPolicy: IfNotPresent
```

Expand Down Expand Up @@ -224,9 +224,9 @@ Render manifests locally before applying them:

```bash
helm template codex-pooler icoretech/codex-pooler \
--version 0.0.13 \
--version 0.0.14 \
--set image.repository=ghcr.io/icoretech/codex-pooler \
--set image.tag=0.0.13 \
--set image.tag=0.0.14 \
--set config.host=pooler.example.com \
--set ingress.enabled=true \
--set ingress.hosts[0].host=pooler.example.com
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule CodexPooler.MixProject do
[
app: :codex_pooler,
# x-release-please-start-version
version: "0.0.13",
version: "0.0.14",
# x-release-please-end
elixir: "~> 1.16",
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down