Compare commits

..
20 Commits
Author SHA1 Message Date
bitbucket-pipelines e87571af8b chore: bump version and update CHANGELOG.md [skip ci] 2026-02-11 10:47:35 +00:00
JonathanGitFlowandjt e504887f2f Merged in feature/update-project-name-in-lock (pull request #64)
feature: update project name in lock

Approved-by: Jonathan Teran
2026-02-11 10:47:04 +00:00
Jonathan Teran Carballo 9cd0b2514b feature: actualizar nombre de proyecto en uv.lock 2026-02-11 07:46:38 -03:00
bitbucket-pipelines 7d246fd4a2 chore: bump version and update CHANGELOG.md [skip ci] 2026-02-11 10:41:14 +00:00
JonathanGitFlowandjt e9ef77d9fc Merged in bugfix/test-pipeline-change (pull request #63)
bugfix: test pipeline change

Approved-by: Jonathan Teran
2026-02-11 10:40:39 +00:00
Jonathan Teran Carballo f2eb5af5f2 bugfix: test pipeline change 2026-02-11 07:38:24 -03:00
bitbucket-pipelines 7c938f207f chore: bump version and update CHANGELOG.md [skip ci] 2026-02-11 00:06:32 +00:00
JonathanGitFlowandjt d571267966 Merged in feature/update-project-name (pull request #62)
feature: actualizo nombre y descripcion del proyecto

Approved-by: Jonathan Teran
2026-02-11 00:06:09 +00:00
jt 41d6957901 feature: actualizo nombre y descripcion del proyecto 2026-02-10 21:05:41 -03:00
bitbucket-pipelines 81a0578830 chore: bump version and update CHANGELOG.md [skip ci] 2026-02-11 00:02:13 +00:00
JonathanGitFlowandjt d035c02cf7 Merged in bugfix/tag-all-commits-locally (pull request #61)
bugfix: taggeo todos los commits localmente, incluso en ci

Approved-by: Jonathan Teran
2026-02-11 00:01:47 +00:00
jt 5d23bb6e8c bugfix: taggeo todos los commits localmente, incluso en ci 2026-02-10 21:00:18 -03:00
bitbucket-pipelines 04c1b47551 chore: bump version and update CHANGELOG.md [skip ci] 2026-02-10 23:57:03 +00:00
JonathanGitFlowandjt 5b91c44c41 Merged in bugfix/test-pipeline-change (pull request #60)
bugfix: test pipeline change

Approved-by: Jonathan Teran
2026-02-10 23:56:38 +00:00
jt 98bf7e7f9c bugfix: test pipeline change 2026-02-10 20:54:06 -03:00
JonathanGitFlowandjt c7d25203c7 Merged in chore/test-git-status-after-tag (pull request #59)
test: muestro git status y log despues de taggear el commit en pipeline

Approved-by: Jonathan Teran
2026-02-10 23:49:02 +00:00
jt 7ac8376247 test: muestro git status y log despues de taggear el commit en pipeline 2026-02-10 20:48:24 -03:00
bitbucket-pipelines 8b8b9337ac chore: bump version and update CHANGELOG.md [skip ci] 2026-02-10 23:39:27 +00:00
JonathanGitFlowandjt da8b27ce88 Merged in bugfix/add-build-step-to-pipeline (pull request #58)
bugfix: agrego paso de build al pipeline

Approved-by: Jonathan Teran
2026-02-10 23:38:32 +00:00
jt ade86f1350 bugfix: agrego paso de build al pipeline 2026-02-10 20:38:02 -03:00
5 changed files with 51 additions and 6 deletions
+42
View File
@@ -1,3 +1,45 @@
## v1.14.0 - 2026-02-11
- **feature**: actualizar nombre de proyecto en uv.lock [[jteran](mailto:jteran@renatre.org.ar)] (9cd0b25)
---
## 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
- **bugfix**: test pipeline change [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (98bf7e7)
---
## v1.12.1 - 2026-02-10
- **bugfix**: agrego paso de build al pipeline [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (ade86f1)
---
## v1.12.0 - 2026-02-10
- **feature**: cambio pipelines para usar uv package manager [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (0f700b0)
+4 -1
View File
@@ -4,10 +4,13 @@ pipelines:
branches:
'main':
- step:
name: "Tag main"
name: "Tag and publish package"
caches:
- pip
script:
- pip install uv
- uv run git-flow tag --token=$BEARER
- git status
- git log --oneline -5
- uv build
- uv publish --token=$PYPI_TOKEN
+2 -2
View File
@@ -3,8 +3,8 @@ requires = ["setuptools >= 80", "setuptools-scm[simple] >= 8" ]
build-backend = "setuptools.build_meta"
[project]
name = "git-flow"
description = "Git workflow automation to follow best practices"
name = "git-flow-envs"
description = "Git workflow automation to follow best practices when working with multiple environments"
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [
+2 -2
View File
@@ -50,8 +50,8 @@ class TagCommand(Command):
if ci:
Git("push").exec(print="Subiendo commit al remoto para taggearlo")
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):
try:
Generated
+1 -1
View File
@@ -101,7 +101,7 @@ wheels = [
]
[[package]]
name = "git-flow"
name = "git-flow-envs"
source = { editable = "." }
dependencies = [
{ name = "requests" },