Compare commits
23
Commits
098a4724ca
...
v1.18.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f1a60cc06 | ||
|
|
fcc8114c8e | ||
|
|
c58c4cea96 | ||
|
|
7fbf499278 | ||
|
|
64fc890cb7 | ||
|
|
7199249f75 | ||
|
|
7efaf367e5 | ||
|
|
dc79ffa399 | ||
|
|
31513a3e3a | ||
|
|
c45f065e77 | ||
|
|
7f7dd7b538 | ||
|
|
adcb53156a | ||
|
|
5ca817c796 | ||
|
|
2be9b50ac4 | ||
|
|
347b8b9556 | ||
|
|
9b547bd6a9 | ||
|
|
f05582b50f | ||
|
|
a1a9a7acac | ||
|
|
190b4b8408 | ||
|
|
f9fb5a62d1 | ||
|
|
09d0de2860 | ||
|
|
f233adfd1d | ||
|
|
0cdc01291c |
@@ -8,7 +8,7 @@ jobs:
|
|||||||
Publish-to-PyPI:
|
Publish-to-PyPI:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Checkout
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|||||||
@@ -1,3 +1,48 @@
|
|||||||
|
## v1.18.0 - 2026-07-29
|
||||||
|
|
||||||
|
- **bugfix**: change checkout version to v7 [[jteran](mailto:jteran@renatre.org.ar)] (c58c4ce)
|
||||||
|
- **bugfix**: move git fetch to separate line [[jteran](mailto:jteran@renatre.org.ar)] (64fc890)
|
||||||
|
- **bugfix**: change actions/checkout to v4 and add step to fetch tags [[jteran](mailto:jteran@renatre.org.ar)] (dc79ffa)
|
||||||
|
- **bugfix**: change actions/checkout version [[jteran](mailto:jteran@renatre.org.ar)] (c45f065)
|
||||||
|
- **bugfix**: add fetch-tags: true [[jteran](mailto:jteran@renatre.org.ar)] (adcb531)
|
||||||
|
- **bugfix**: remove checkout parameters [[jteran](mailto:jteran@renatre.org.ar)] (2be9b50)
|
||||||
|
- **feature**: show commit count and list tags on workflow [[jteran](mailto:jteran@renatre.org.ar)] (f05582b)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v0.1.0-main - 2026-07-29
|
||||||
|
|
||||||
|
- **bugfix**: change actions/checkout to v4 and add step to fetch tags [[jteran](mailto:jteran@renatre.org.ar)] (dc79ffa)
|
||||||
|
- **bugfix**: change actions/checkout version [[jteran](mailto:jteran@renatre.org.ar)] (c45f065)
|
||||||
|
- **bugfix**: add fetch-tags: true [[jteran](mailto:jteran@renatre.org.ar)] (adcb531)
|
||||||
|
- **bugfix**: remove checkout parameters [[jteran](mailto:jteran@renatre.org.ar)] (2be9b50)
|
||||||
|
- **feature**: show commit count and list tags on workflow [[jteran](mailto:jteran@renatre.org.ar)] (f05582b)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v0.1.0-main - 2026-07-29
|
||||||
|
|
||||||
|
- **feature**: show commit count and list tags on workflow [[jteran](mailto:jteran@renatre.org.ar)] (f05582b)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v0.0.1-main - 2026-07-18
|
||||||
|
|
||||||
|
- **bugfix**: add fetch tags to checkout step [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (f9fb5a6)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## v0.1.0-main - 2026-07-18
|
||||||
|
|
||||||
|
- **feature**: print current tag command output [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (0cdc012)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
## v0.1.0-main - 2026-07-18
|
## v0.1.0-main - 2026-07-18
|
||||||
|
|
||||||
- **style**: organize imports [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (a08666c)
|
- **style**: organize imports [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (a08666c)
|
||||||
|
|||||||
+2
-2
@@ -53,7 +53,7 @@ class Git:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_current_tag():
|
def get_current_tag():
|
||||||
return Git("describe", abbrev="0", tags=True).firstline(check=False)
|
return Git("describe", abbrev="0", tags=True).firstline(check=False, print="Obteniendo tag actual")
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_first_fork_point(branch: str, env: str):
|
def get_first_fork_point(branch: str, env: str):
|
||||||
@@ -117,7 +117,7 @@ class Git:
|
|||||||
|
|
||||||
return lines if not strip else list(map(lambda l: l.strip(), lines))
|
return lines if not strip else list(map(lambda l: l.strip(), lines))
|
||||||
|
|
||||||
def firstline(self, **kwargs: bool):
|
def firstline(self, **kwargs):
|
||||||
lines = self.lines(**kwargs)
|
lines = self.lines(**kwargs)
|
||||||
|
|
||||||
return lines[0] if lines else ""
|
return lines[0] if lines else ""
|
||||||
|
|||||||
Reference in New Issue
Block a user