Skip to content

Commit 4c55ad7

Browse files
chore: update documentation to reflect transfer to DimwitLabs/ode
1 parent c384d8e commit 4c55ad7

8 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: docker/metadata-action@v5
1919
id: meta
2020
with:
21-
images: ghcr.io/deepanshkhurana/ode
21+
images: ghcr.io/dimwitlabs/ode
2222
tags: |
2323
type=raw,value=latest,enable={{is_default_branch}}
2424
type=raw,value=development,enable=${{ github.ref == 'refs/heads/development' }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.3] - 2026-02-28
9+
10+
### Changed
11+
12+
- Ode will now move from [DeepanshKhurana/ode](https://github.com/DeepanshKhurana/ode) to [DimwitLabs/ode](https://github.com/DimwitLabs/ode). Please ensure you update your `docker-compose.yml` for the new url which will be under `ghcr.io/dimwitlabs/ode:<tag>`. This version functionally changes nothing except this information. `v1.4.4` is planned to be from the new url. In that case, `ghcr.io/deepanshkhurana/ode:latest` will point to `v1.4.3` while `ghcr.io/dimwitlabs/ode:latest` will continue to get updates.
13+
814
## [1.4.2] - 2026-02-27
915

1016
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Create a `docker-compose.yml`:
9292
```yaml
9393
services:
9494
ode:
95-
image: ghcr.io/deepanshkhurana/ode:latest
95+
image: ghcr.io/dimwitlabs/ode:latest
9696
ports:
9797
- "8080:4173"
9898
restart: unless-stopped

WRITING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Create a `docker-compose.yml` and mount the content repository using an **absolu
5252
```yaml
5353
services:
5454
ode:
55-
image: ghcr.io/deepanshkhurana/ode:latest
55+
image: ghcr.io/dimwitlabs/ode:latest
5656
ports:
5757
- "8080:4173"
5858
restart: unless-stopped

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
ode:
3-
image: ghcr.io/deepanshkhurana/ode:latest
3+
image: ghcr.io/dimwitlabs/ode:latest
44
ports:
55
- "8080:4173"
66
restart: unless-stopped

docsite/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const config: Config = {
123123
{
124124
type: 'html',
125125
position: 'right',
126-
value: '<span style="padding: 0.25rem 0.5rem; background: var(--ifm-color-primary); color: white; border-radius: 4px; font-size: 0.875rem; font-weight: 600;">v1.4.2</span>',
126+
value: '<span style="padding: 0.25rem 0.5rem; background: var(--ifm-color-primary); color: white; border-radius: 4px; font-size: 0.875rem; font-weight: 600;">v1.4.3</span>',
127127
},
128128
{
129129
href: 'https://demo.ode.dimwit.me/',

docsite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docsite",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ode",
33
"private": true,
4-
"version": "1.4.2",
4+
"version": "1.4.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)