Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 925 Bytes

File metadata and controls

35 lines (26 loc) · 925 Bytes

Release

This document outlines the process of creating a new release for the Directory Python SDK.

1. Create a release branch

Create a branch for the new release:

  1. Update the SDK version in:
    • pyproject.toml
    • examples/pyproject.toml
    • .github/ISSUE_TEMPLATE/bug_report.yml
  2. Update the dependencies if necessary:
  3. Add an entry to CHANGELOG.md

2. Create and push tags

After the release branch is merged, update your main branch:

git checkout main
git pull origin main

To trigger the release workflow, create and push the release tag for the last commit:

git tag -a v1.5.0
git push origin v1.5.0