Skip to content

Commit 095d1d8

Browse files
committed
chore: update version to v1.4.3-2026-04-21 and adjust release references
1 parent 1adb060 commit 095d1d8

7 files changed

Lines changed: 25 additions & 14 deletions

File tree

CONTRIBUTING.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,22 @@ For maintainers releasing a new version.
6767
goreleaser release --snapshot --clean
6868
```
6969

70-
### 2. Create and push tag
70+
### 2. Update release references
71+
72+
Before tagging, update user-facing release references to the final version:
73+
74+
- README version section and Docker image examples
75+
- Compose file image tags
76+
- Nix package version in `flake.nix`
77+
78+
Use `rg` to confirm that the previous release tag no longer appears in
79+
release-facing files.
80+
81+
### 3. Create and push tag
7182

7283
```sh
7384
# Set variables (fish shell)
74-
set VERSION v1.4.2
85+
set VERSION v1.4.3
7586
set ANYTYPE_UNIX_TIMESTAMP <current timestamp from https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/>
7687
# The compatibility date suffix is always derived in UTC.
7788
set ANYTYPE_FORMATTED (env TZ=UTC date -r $ANYTYPE_UNIX_TIMESTAMP +'%Y-%m-%d')
@@ -86,7 +97,7 @@ git push origin tag $FINAL_VERSION
8697

8798
`v[bundle-version]-[anytype-compatibility-date]`
8899

89-
- `v1.4.2` – Bundle's semantic version (SemVer)
100+
- `v1.4.3` – Bundle's semantic version (SemVer)
90101
- `YYYY-MM-DD` – Date derived in UTC from the current Anytype compatibility timestamp:
91102
https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/
92103

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ docker run -d \
3535
-p 33020:33020/udp \
3636
-v $(pwd)/data:/data \
3737
--restart unless-stopped \
38-
ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07
38+
ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21
3939
```
4040

4141
After the first run, import `./data/client-config.yml` into Anytype apps.
@@ -69,12 +69,12 @@ After the first run, import `./data/client-config.yml` into Anytype apps.
6969

7070
### Version
7171

72-
Current version: **`v1.4.2-2026-04-07`**
72+
Current version: **`v1.4.3-2026-04-21`**
7373

7474
Format: `v[bundle-version]-[anytype-compatibility-date]`
7575

76-
- `v1.4.2` – Bundle's semantic version (SemVer)
77-
- `2026-04-07` – Anytype any-sync compatibility date from [anytype.io](https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/)
76+
- `v1.4.3` – Bundle's semantic version (SemVer)
77+
- `2026-04-21` – Anytype any-sync compatibility date from [anytype.io](https://puppetdoc.anytype.io/api/v1/prod-any-sync-compatible-versions/)
7878

7979
> The compatibility date suffix is always derived in UTC.
8080
@@ -86,8 +86,8 @@ Format: `v[bundle-version]-[anytype-compatibility-date]`
8686

8787
| Image Tag | Description |
8888
| --------------------------------------------------------- | ----------------------------------- |
89-
| `ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07` | All-in-one (embedded MongoDB/Redis) |
90-
| `ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07-minimal` | Minimal (external MongoDB/Redis) |
89+
| `ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21` | All-in-one (embedded MongoDB/Redis) |
90+
| `ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21-minimal` | Minimal (external MongoDB/Redis) |
9191

9292
Latest tags (`:latest`, `:minimal`) are available, but explicit version tags are recommended.
9393

compose.aio.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
services:
99
any-sync-bundle:
10-
image: ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07
10+
image: ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21
1111
container_name: any-sync-bundle-aio
1212
restart: unless-stopped
1313
ports:

compose.external.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services:
5757
start_period: 5s
5858

5959
any-sync-bundle:
60-
image: ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07-minimal
60+
image: ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21-minimal
6161
container_name: any-sync-bundle
6262
restart: unless-stopped
6363
depends_on:

compose.s3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
"
4545
4646
any-sync-bundle:
47-
image: ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07
47+
image: ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21
4848
container_name: any-sync-bundle-aio
4949
restart: unless-stopped
5050
depends_on:

compose.traefik.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ services:
3939
- /var/run/docker.sock:/var/run/docker.sock:ro
4040

4141
any-sync-bundle:
42-
image: ghcr.io/grishy/any-sync-bundle:1.4.2-2026-04-07
42+
image: ghcr.io/grishy/any-sync-bundle:1.4.3-2026-04-21
4343
container_name: any-sync-bundle-aio
4444
restart: unless-stopped
4545
environment:

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
{
4747
packages.default = (pkgs.buildGoModule.override { go = goPackage; }) rec {
4848
pname = "any-sync-bundle";
49-
version = "v1.4.2-2026-04-07";
49+
version = "v1.4.3-2026-04-21";
5050

5151
src = ./.;
5252

0 commit comments

Comments
 (0)