From 5e7a062b24020204177c73a273f53da91dbdf2c7 Mon Sep 17 00:00:00 2001
From: Guanzhou Song
Date: Wed, 22 Apr 2026 20:28:11 -0400
Subject: [PATCH] Update package docs for v0.110-0
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Signed-off-by: Guanzhou Song
---
PACKAGE-INSTALL.md | 6 +++---
app/packages/page.tsx | 17 ++++++++++++-----
2 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/PACKAGE-INSTALL.md b/PACKAGE-INSTALL.md
index 6eeaa48..126c89e 100644
--- a/PACKAGE-INSTALL.md
+++ b/PACKAGE-INSTALL.md
@@ -162,9 +162,9 @@ GitHub Releases contains `.deb` and `.rpm` assets for every published combinatio
Examples:
```text
-ubuntu22.04-postgresql-18-documentdb_0.109-0_amd64.deb
-deb13-postgresql-18-documentdb_0.109-0_amd64.deb
-rhel9-postgresql18-documentdb-0.109.0-1.el9.x86_64.rpm
+ubuntu22.04-postgresql-18-documentdb_0.110-0_amd64.deb
+deb13-postgresql-18-documentdb_0.110-0_amd64.deb
+rhel9-postgresql18-documentdb-0.110.0-1.el9.x86_64.rpm
```
- GitHub Releases: https://github.com/documentdb/documentdb/releases
diff --git a/app/packages/page.tsx b/app/packages/page.tsx
index d0bb049..e5bee16 100644
--- a/app/packages/page.tsx
+++ b/app/packages/page.tsx
@@ -50,6 +50,13 @@ const nextGuides = [
] as const;
const allReleasesUrl = "https://github.com/documentdb/documentdb/releases";
+const currentAptVersionExample = "0.110-0";
+const currentRpmVersionExample = "0.110.0-1.el9";
+const currentReleaseExamples = [
+ `ubuntu22.04-postgresql-18-documentdb_${currentAptVersionExample}_amd64.deb`,
+ `deb13-postgresql-18-documentdb_${currentAptVersionExample}_amd64.deb`,
+ `rhel9-postgresql18-documentdb-${currentRpmVersionExample}.x86_64.rpm`,
+] as const;
export default function PackagesPage() {
const [method, setMethod] = useState("docker");
@@ -374,8 +381,8 @@ export default function PackagesPage() {
Use the commands below to discover available versions before pinning. Replace{" "}
<VERSION> with the version string
shown by the list command (e.g.{" "}
- 0.109-0 for APT,{" "}
- 0.109.0-1.el9 for RPM).
+ {currentAptVersionExample} for APT,{" "}
+ {currentRpmVersionExample} for RPM).
APT — list then pin
@@ -429,9 +436,9 @@ export default function PackagesPage() {
GitHub. Recent release examples:
-
ubuntu22.04-postgresql-18-documentdb_0.109-0_amd64.deb
-
deb13-postgresql-18-documentdb_0.109-0_amd64.deb
-
rhel9-postgresql18-documentdb-0.109.0-1.el9.x86_64.rpm
+
{currentReleaseExamples[0]}
+
{currentReleaseExamples[1]}
+
{currentReleaseExamples[2]}
Swap the distribution, PostgreSQL version, architecture, and version string to match