-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
848acbb
commit cd50a31
Showing
4 changed files
with
52 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Release Process | ||
|
||
Simple guide for releasing new versions of dagster-odp. | ||
|
||
## Creating a Release | ||
|
||
1. Create a release branch | ||
```bash | ||
git checkout -b release/0.1.0 | ||
``` | ||
|
||
2. Update version in `pyproject.toml` | ||
```toml | ||
[project] | ||
version = "0.1.0" | ||
``` | ||
|
||
3. Update `CHANGELOG.md` | ||
```markdown | ||
# Changelog | ||
|
||
## [0.1.0] - YYYY-MM-DD | ||
- List your changes here | ||
``` | ||
|
||
4. Create a PR to merge into `main` | ||
- Title: "Release 0.1.0" | ||
- Get review and approval | ||
|
||
5. Merge PR | ||
- The release workflow will automatically: | ||
- Create a GitHub release | ||
- Build and upload the package | ||
|
||
## Versioning | ||
|
||
We use [Semantic Versioning](https://semver.org/): | ||
- MAJOR.MINOR.PATCH (e.g., 0.1.0) | ||
- Increment MAJOR for breaking changes | ||
- Increment MINOR for new features | ||
- Increment PATCH for bug fixes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters