Skip to content

Commit

Permalink
Documentation: Update DEVELOP.md about the release procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Dec 22, 2024
1 parent 9b55175 commit 0342e26
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,20 @@ Invoke software tests.
hatch run unit-tests
hatch run integration-tests
```

## Release
- Bump version in `dbt/adapters/cratedb/__version__.py`.
- Edit `CHANGELOG.md`, designating a new release.
- Repository: Tag and Push.
```shell
git commit -m "Release v0.1.0"
git tag v0.1.0
git push && git push --tags
```
- PyPI: Build and publish
```shell
hatch build
hatch publish
```
- GitHub: Designate new release.
https://github.com/crate/dbt-cratedb2/releases

0 comments on commit 0342e26

Please sign in to comment.