Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a2475195b2 | ||
|
|
603519bf39 | ||
|
|
0c8e7bb37a |
@@ -1,3 +1,10 @@
|
|||||||
|
## v1.6.2 - 2025-12-04
|
||||||
|
|
||||||
|
- **bugfix**: crear changelog cuando no existe [[jteran](mailto:jteran@renatre.org.ar)] (0c8e7bb)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
## v1.6.1 - 2025-11-29
|
## v1.6.1 - 2025-11-29
|
||||||
|
|
||||||
### Commits
|
### Commits
|
||||||
|
|||||||
@@ -16,8 +16,6 @@ class Changelog:
|
|||||||
|
|
||||||
return f"""## {title} - {now.strftime("%F")}
|
return f"""## {title} - {now.strftime("%F")}
|
||||||
|
|
||||||
### Commits
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def generate_content(self, base: str, branch: str):
|
def generate_content(self, base: str, branch: str):
|
||||||
@@ -56,5 +54,6 @@ class Changelog:
|
|||||||
if isfile(self.FILENAME):
|
if isfile(self.FILENAME):
|
||||||
with open(self.FILENAME, "r") as f:
|
with open(self.FILENAME, "r") as f:
|
||||||
content += f.read()
|
content += f.read()
|
||||||
with open(self.FILENAME, "w") as f:
|
|
||||||
f.write(content)
|
with open(self.FILENAME, "w") as f:
|
||||||
|
f.write(content)
|
||||||
|
|||||||
Reference in New Issue
Block a user