Skip to content

Commit 2bb83d6

Browse files
committed
Release version 0.56.0
1 parent 8fcc142 commit 2bb83d6

File tree

2 files changed

+96
-2
lines changed

2 files changed

+96
-2
lines changed

CHANGES.rst

Lines changed: 95 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,104 @@
11
Changelog
22
=========
33

4-
0.55.0 (2025-12-07)
4+
0.56.0 (2025-12-11)
55
-------------------
66
------------------------
77

8+
Fix
9+
~~~
10+
- Replace deprecated git lfs clone with git clone + git lfs fetch --all.
11+
[Rodos]
12+
13+
git lfs clone is deprecated - modern git clone handles LFS automatically.
14+
Using git lfs fetch --all ensures all LFS objects across all refs are
15+
backed up, matching the existing bare clone behavior and providing
16+
complete LFS backups.
17+
18+
Closes #379
19+
- Add Windows support with entry_points and os.replace. [Rodos]
20+
21+
- Replace os.rename() with os.replace() for atomic file operations
22+
on Windows (os.rename fails if destination exists on Windows)
23+
- Add entry_points console_scripts for proper .exe generation on Windows
24+
- Create github_backup/cli.py with main() entry point
25+
- Add github_backup/__main__.py for python -m github_backup support
26+
- Keep bin/github-backup as thin wrapper for backwards compatibility
27+
28+
Closes #112
29+
30+
Other
31+
~~~~~
32+
- Docs: add "Restoring from Backup" section to README. [Rodos]
33+
34+
Clarifies that this tool is backup-only with no inbuilt restore.
35+
Documents that git repos can be pushed back, but issues/PRs have
36+
GitHub API limitations affecting all backup tools.
37+
38+
Closes #246
39+
- Chore(deps): bump urllib3 in the python-packages group.
40+
[dependabot[bot]]
41+
42+
Bumps the python-packages group with 1 update: [urllib3](https://github.com/urllib3/urllib3).
43+
44+
45+
Updates `urllib3` from 2.6.0 to 2.6.1
46+
- [Release notes](https://github.com/urllib3/urllib3/releases)
47+
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
48+
- [Commits](https://github.com/urllib3/urllib3/compare/2.6.0...2.6.1)
49+
50+
---
51+
updated-dependencies:
52+
- dependency-name: urllib3
53+
dependency-version: 2.6.1
54+
dependency-type: direct:production
55+
update-type: version-update:semver-patch
56+
dependency-group: python-packages
57+
...
58+
- Chore(deps): bump the python-packages group with 3 updates.
59+
[dependabot[bot]]
60+
61+
Bumps the python-packages group with 3 updates: [black](https://github.com/psf/black), [pytest](https://github.com/pytest-dev/pytest) and [platformdirs](https://github.com/tox-dev/platformdirs).
62+
63+
64+
Updates `black` from 25.11.0 to 25.12.0
65+
- [Release notes](https://github.com/psf/black/releases)
66+
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
67+
- [Commits](https://github.com/psf/black/compare/25.11.0...25.12.0)
68+
69+
Updates `pytest` from 9.0.1 to 9.0.2
70+
- [Release notes](https://github.com/pytest-dev/pytest/releases)
71+
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
72+
- [Commits](https://github.com/pytest-dev/pytest/compare/9.0.1...9.0.2)
73+
74+
Updates `platformdirs` from 4.5.0 to 4.5.1
75+
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
76+
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
77+
- [Commits](https://github.com/tox-dev/platformdirs/compare/4.5.0...4.5.1)
78+
79+
---
80+
updated-dependencies:
81+
- dependency-name: black
82+
dependency-version: 25.12.0
83+
dependency-type: direct:production
84+
update-type: version-update:semver-minor
85+
dependency-group: python-packages
86+
- dependency-name: pytest
87+
dependency-version: 9.0.2
88+
dependency-type: direct:production
89+
update-type: version-update:semver-patch
90+
dependency-group: python-packages
91+
- dependency-name: platformdirs
92+
dependency-version: 4.5.1
93+
dependency-type: direct:production
94+
update-type: version-update:semver-patch
95+
dependency-group: python-packages
96+
...
97+
98+
99+
0.55.0 (2025-12-07)
100+
-------------------
101+
8102
Fix
9103
~~~
10104
- Improve error messages for inaccessible repos and empty wikis. [Rodos]

github_backup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.55.0"
1+
__version__ = "0.56.0"

0 commit comments

Comments
 (0)