Compare commits

...

5 Commits

Author SHA1 Message Date
GitHub Action
5530a1badd Release version 0.50.0 2025-02-22 03:15:44 +00:00
Jose Diaz-Gonzalez
90ac4999ea Merge pull request #390 from josegonzalez/josegonzalez-patch-1
chore: fix inline comments
2025-02-21 21:15:10 -06:00
Jose Diaz-Gonzalez
f4dfc57ba2 Merge pull request #389 from josegonzalez/dependabot/pip/python-packages-8d5090f3fa
chore(deps): bump the python-packages group across 1 directory with 2 updates
2025-02-21 21:14:54 -06:00
Jose Diaz-Gonzalez
3d354beb24 chore: fix inline comments 2025-02-21 22:14:37 -05:00
dependabot[bot]
552c1051e3 chore(deps): bump the python-packages group across 1 directory with 2 updates
Bumps the python-packages group with 2 updates in the / directory: [flake8](https://github.com/pycqa/flake8) and [pkginfo](https://code.launchpad.net/~tseaver/pkginfo/trunk).


Updates `flake8` from 7.1.1 to 7.1.2
- [Commits](https://github.com/pycqa/flake8/compare/7.1.1...7.1.2)

Updates `pkginfo` from 1.12.0 to 1.12.1.2

---
updated-dependencies:
- dependency-name: flake8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: pkginfo
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-19 17:28:50 +00:00
4 changed files with 33 additions and 6 deletions

View File

@@ -1,9 +1,36 @@
Changelog Changelog
========= =========
0.49.0 (2025-02-01) 0.50.0 (2025-02-22)
------------------- -------------------
------------------------ ------------------------
- Chore: fix inline comments. [Jose Diaz-Gonzalez]
- Chore(deps): bump the python-packages group across 1 directory with 2
updates. [dependabot[bot]]
Bumps the python-packages group with 2 updates in the / directory: [flake8](https://github.com/pycqa/flake8) and [pkginfo](https://code.launchpad.net/~tseaver/pkginfo/trunk).
Updates `flake8` from 7.1.1 to 7.1.2
- [Commits](https://github.com/pycqa/flake8/compare/7.1.1...7.1.2)
Updates `pkginfo` from 1.12.0 to 1.12.1.2
---
updated-dependencies:
- dependency-name: flake8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
- dependency-name: pkginfo
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: python-packages
...
0.49.0 (2025-02-01)
-------------------
- Convert timestamp to string, although maybe the other way around would - Convert timestamp to string, although maybe the other way around would
be better ... [Honza Maly] be better ... [Honza Maly]
- Implementing incremental by files, safer version of incremental - Implementing incremental by files, safer version of incremental

View File

@@ -1 +1 @@
__version__ = "0.49.0" __version__ = "0.50.0"

View File

@@ -1137,7 +1137,7 @@ def backup_issues(args, repo_cwd, repository, repos_template):
with codecs.open(issue_file + ".temp", "w", encoding="utf-8") as f: with codecs.open(issue_file + ".temp", "w", encoding="utf-8") as f:
json_dump(issue, f) json_dump(issue, f)
os.rename(issue_file + ".temp", issue_file) # Unlike json_dump, this is atomic os.rename(issue_file + ".temp", issue_file) # Unlike json_dump, this is atomic
def backup_pulls(args, repo_cwd, repository, repos_template): def backup_pulls(args, repo_cwd, repository, repos_template):
@@ -1208,7 +1208,7 @@ def backup_pulls(args, repo_cwd, repository, repos_template):
with codecs.open(pull_file + ".temp", "w", encoding="utf-8") as f: with codecs.open(pull_file + ".temp", "w", encoding="utf-8") as f:
json_dump(pull, f) json_dump(pull, f)
os.rename(pull_file + ".temp", pull_file) # Unlike json_dump, this is atomic os.rename(pull_file + ".temp", pull_file) # Unlike json_dump, this is atomic
def backup_milestones(args, repo_cwd, repository, repos_template): def backup_milestones(args, repo_cwd, repository, repos_template):

View File

@@ -6,7 +6,7 @@ charset-normalizer==3.4.1
click==8.1.8 click==8.1.8
colorama==0.4.6 colorama==0.4.6
docutils==0.21.2 docutils==0.21.2
flake8==7.1.1 flake8==7.1.2
gitchangelog==3.0.4 gitchangelog==3.0.4
idna==3.10 idna==3.10
importlib-metadata==8.6.1 importlib-metadata==8.6.1
@@ -19,7 +19,7 @@ more-itertools==10.6.0
mypy-extensions==1.0.0 mypy-extensions==1.0.0
packaging==24.2 packaging==24.2
pathspec==0.12.1 pathspec==0.12.1
pkginfo==1.12.0 pkginfo==1.12.1.2
platformdirs==4.3.6 platformdirs==4.3.6
pycodestyle==2.12.1 pycodestyle==2.12.1
pyflakes==3.2.0 pyflakes==3.2.0