Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update example for prerelease versions to use semantic versioning syntax #5361

Merged
merged 4 commits into from
Apr 26, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions website/docs/docs/build/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ By default, `dbt deps` will not include prerelease versions when resolving packa
- Explicitly specifying a prerelease version in your `version` criteria
- Setting `install-prerelease` to `true`, and providing a compatible version range

Both of the following configurations would successfully install `0.4.5a2` of `dbt_artifacts`:
Both of the following configurations would successfully install `0.4.5-a2` of `dbt_artifacts`:
dbeatty10 marked this conversation as resolved.
Show resolved Hide resolved

```yaml
packages:
- package: brooklyn-data/dbt_artifacts
version: 0.4.5a2
version: 0.4.5-a2
```

```yaml
Expand Down
Loading