Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
- fix #1139: use logging.lastResort instead of a own replica to avoid polluting logging._handlerList
- fix #873: don't infer version in cli if --no-version is given
- fix #535: accept tags from a release action in the gh ui
- fix #1073: explain namespaces for release-branch-semver

## v8.3.1

Expand Down
4 changes: 4 additions & 0 deletions docs/extending.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,12 @@ representing the version.
non-release branch, increments the minor segment and sets the micro segment to
zero, then appends `.devN`

Namespaces are unix pathname separated parts of a branch/tag name.

**Examples:**
- Tag `1.0.0` on release branch `release-1.0` → version `1.0.1.devN`

- Tag `1.0.0` on release branch `release/v1.0` → version `1.0.1.devN`
- Tag `1.0.0` on development branch → version `1.1.0.devN`

### `setuptools_scm.local_scheme`
Expand Down
Loading