Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Add section on how to use snapshots #162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
22 changes: 22 additions & 0 deletions landing-page/content/common/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,28 @@ To add a dependency on Iceberg in Maven, add the following to your `pom.xml`:
</dependencies>
```

#### Development snapshots
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we put this on a different page? We want to keep snapshots and releases separate since we can't recommend testing snapshots to the general public. I think we want it to be documented, though.


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

Expand Down