Add section on how to use snapshots
diff --git a/landing-page/content/common/release-notes.md b/landing-page/content/common/release-notes.md
index 60797cd..fcf29d0 100644
--- a/landing-page/content/common/release-notes.md
+++ b/landing-page/content/common/release-notes.md
@@ -68,6 +68,28 @@
 </dependencies>
 ```
 
+#### Development snapshots
+
+If you want to try out the [latest development snapshot](https://repository.apache.org/content/groups/snapshots/org/apache/iceberg/), you can add the snapshots repository:
+
+```
+<repositories>
+    <repository>
+        <id>apache.snapshots</id>
+        <name>Apache Snapshot Repository</name>
+        <url>https://repository.apache.org/snapshots</url>
+        <releases>
+            <enabled>false</enabled>
+        </releases>
+        <snapshots>
+          <enabled>true</enabled>
+          <updatePolicy>always</updatePolicy>
+        </snapshots>
+    </repository>
+</repositories>
+```
+
+Set the Iceberg version to the next snapshot: `major.minor.patch-SNAPSHOT`. Snapshots should not be used in production.
 
 ## 0.14.1 release