Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac66a7409b | ||
|
|
7d246fd4a2 | ||
|
|
e9ef77d9fc | ||
|
|
f2eb5af5f2 | ||
|
|
7c938f207f | ||
|
|
d571267966 | ||
|
|
41d6957901 | ||
|
|
81a0578830 | ||
|
|
d035c02cf7 | ||
|
|
5d23bb6e8c |
@@ -1,3 +1,31 @@
|
|||||||
|
## v1.13.2 - 2026-02-11
|
||||||
|
|
||||||
|
- **bugfix**: test pipeline change [[jteran](mailto:jteran@renatre.org.ar)] (f2eb5af)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v1.13.1 - 2026-02-11
|
||||||
|
|
||||||
|
- **bugfix**: test pipeline change [[jteran](mailto:jteran@renatre.org.ar)] (f2eb5af)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v1.13.0 - 2026-02-11
|
||||||
|
|
||||||
|
- **feature**: actualizo nombre y descripcion del proyecto [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (41d6957)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v1.12.3 - 2026-02-11
|
||||||
|
|
||||||
|
- **bugfix**: taggeo todos los commits localmente, incluso en ci [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (5d23bb6)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
## v1.12.2 - 2026-02-10
|
## v1.12.2 - 2026-02-10
|
||||||
|
|
||||||
- **bugfix**: test pipeline change [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (98bf7e7)
|
- **bugfix**: test pipeline change [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (98bf7e7)
|
||||||
|
|||||||
+2
-2
@@ -3,8 +3,8 @@ requires = ["setuptools >= 80", "setuptools-scm[simple] >= 8" ]
|
|||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "git-flow"
|
name = "git-flow-envs"
|
||||||
description = "Git workflow automation to follow best practices"
|
description = "Git workflow automation to follow best practices when working with multiple environments"
|
||||||
dynamic = ["version"]
|
dynamic = ["version"]
|
||||||
requires-python = ">= 3.10"
|
requires-python = ">= 3.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|||||||
@@ -50,8 +50,8 @@ class TagCommand(Command):
|
|||||||
if ci:
|
if ci:
|
||||||
Git("push").exec(print="Subiendo commit al remoto para taggearlo")
|
Git("push").exec(print="Subiendo commit al remoto para taggearlo")
|
||||||
self.success(self.get_remote_api(token).create_tag(next_tag, tag_commit))
|
self.success(self.get_remote_api(token).create_tag(next_tag, tag_commit))
|
||||||
else:
|
|
||||||
Git("tag", next_tag, tag_commit).exec(print="Creando tag localmente")
|
Git("tag", next_tag, tag_commit).exec(print="Creando tag localmente")
|
||||||
|
|
||||||
def get_token_and_ci(self, args: Namespace):
|
def get_token_and_ci(self, args: Namespace):
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user