mirror of
https://github.com/chatmail/core.git
synced 2026-05-01 20:36:31 +03:00
Switch to "vX.Y.Z" tagging scheme
Previously we used tags like "1.109.0" and "py-1.109.0". Since Python bindings are always released at the same time as the core, it is easier to use a single tag for them. "v" prefix is added to make matching by "v*" easier in CI and scripts.
This commit is contained in:
@@ -11,6 +11,7 @@
|
|||||||
- Remove `Sql.get_conn()` interface in favor of `.call()` and `.transaction()`. #4055
|
- Remove `Sql.get_conn()` interface in favor of `.call()` and `.transaction()`. #4055
|
||||||
- Updated provider database.
|
- Updated provider database.
|
||||||
- Disable DKIM-Checks again #4076
|
- Disable DKIM-Checks again #4076
|
||||||
|
- Switch from "X.Y.Z" and "py-X.Y.Z" to "vX.Y.Z" tags. #4089
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
- Start SQL transactions with IMMEDIATE behaviour rather than default DEFERRED one. #4063
|
- Start SQL transactions with IMMEDIATE behaviour rather than default DEFERRED one. #4063
|
||||||
|
|||||||
@@ -44,8 +44,8 @@ deltachat = [
|
|||||||
|
|
||||||
[tool.setuptools_scm]
|
[tool.setuptools_scm]
|
||||||
root = ".."
|
root = ".."
|
||||||
tag_regex = '^(?P<prefix>py-)?(?P<version>[^\+]+)(?P<suffix>.*)?$'
|
tag_regex = '^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$'
|
||||||
git_describe_command = "git describe --dirty --tags --long --match py-*.*"
|
git_describe_command = "git describe --dirty --tags --long --match v*.*"
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 120
|
line-length = 120
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ resources:
|
|||||||
source:
|
source:
|
||||||
branch: master
|
branch: master
|
||||||
uri: https://github.com/deltachat/deltachat-core-rust.git
|
uri: https://github.com/deltachat/deltachat-core-rust.git
|
||||||
tag_filter: "py-*"
|
tag_filter: "v*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- name: doxygen
|
- name: doxygen
|
||||||
|
|||||||
@@ -115,10 +115,8 @@ def main():
|
|||||||
|
|
||||||
print("after commit, on master make sure to: ")
|
print("after commit, on master make sure to: ")
|
||||||
print("")
|
print("")
|
||||||
print(f" git tag -a {newversion}")
|
print(f" git tag -a v{newversion}")
|
||||||
print(f" git push origin {newversion}")
|
print(f" git push origin v{newversion}")
|
||||||
print(f" git tag -a py-{newversion}")
|
|
||||||
print(f" git push origin py-{newversion}")
|
|
||||||
print("")
|
print("")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user