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 .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ body:
attributes:
label: Version
description: Output of `dikw version`.
placeholder: "0.6.3"
placeholder: "0.6.4"
validations:
required: true
- type: dropdown
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on each entry call out exactly what shape changes break.

## Unreleased

## 0.6.4 — K-layer system prompts extracted to packaged `.md`; product self-reference unified to `dikw`

### Changed

- **K-layer system prompts extracted to `prompts/*.md`; product self-reference
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ keeps the quick-start under a screenful.
against it too:

```bash
docker run --rm -v ./base:/base ghcr.io/opendikw/dikw-core:0.6.3 init /base
docker run --rm ghcr.io/opendikw/dikw-core:0.6.3 version
docker run --rm -v ./base:/base ghcr.io/opendikw/dikw-core:0.6.4 init /base
docker run --rm ghcr.io/opendikw/dikw-core:0.6.4 version
```

There is intentionally **no floating `:latest`** — downstream pins an
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dikw init my-base --description "my research base"
cd my-base
```

Pin an exact version (`uv pip install 'dikw-core[postgres]==0.6.3'`) so your
Pin an exact version (`uv pip install 'dikw-core[postgres]==0.6.4'`) so your
client stays on the same release as the server it talks to — `dikw client`
runs a [version handshake](server.md) and hard-fails on a mismatch.

Expand Down
2 changes: 1 addition & 1 deletion examples/docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# released version (https://github.com/OpenDIKW/dikw-core/releases); compose
# fails closed until it's set, so the debug environment never rides a stale
# default. Bump deliberately when you want to debug against a newer release.
DIKW_VERSION=0.6.3
DIKW_VERSION=0.6.4

# Required — leave blank to force compose to fail-closed until set.
# Generate strong values, e.g. `openssl rand -base64 24` for both.
Expand Down
2 changes: 1 addition & 1 deletion examples/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
# (``docker compose up --build``); it does NOT auto-pull. Its ``args``
# forward the same DIKW_VERSION so a local build matches the pinned tag
# instead of the Dockerfile's ARG default.
image: ghcr.io/opendikw/dikw-core:${DIKW_VERSION:?set DIKW_VERSION in .env to a released version, e.g. 0.6.3}
image: ghcr.io/opendikw/dikw-core:${DIKW_VERSION:?set DIKW_VERSION in .env to a released version, e.g. 0.6.4}
build:
context: .
dockerfile: Dockerfile
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 = "hatchling.build"

[project]
name = "dikw-core"
version = "0.6.3"
version = "0.6.4"
description = "AI-native knowledge engine across the DIKW pyramid (Data → Information → Knowledge → Wisdom)"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading