From ba852b58307cbb1a44f8d383fe0dbfd54fc41c5b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 12 Dec 2025 11:07:14 +0000 Subject: [PATCH] Release version 0.57.0 --- CHANGES.rst | 33 ++++++++++++++++++++++++++++++++- github_backup/__init__.py | 2 +- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 37bdefc..1a8809e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,40 @@ Changelog ========= -0.56.0 (2025-12-11) +0.57.0 (2025-12-12) ------------------- ------------------------ +- Add GitHub Apps documentation and remove outdated header. [Rodos] + + - Add GitHub Apps authentication section with setup steps + and CI/CD workflow example using actions/create-github-app-token + - Remove outdated machine-man-preview header (graduated 2020) + + Closes #189 +- Docs: add stdin token example to README. [Rodos] + + Add example showing how to pipe a token from stdin using + file:///dev/stdin to avoid storing tokens in environment + variables or command history. + + Closes #187 +- Add --skip-assets-on flag to skip release asset downloads (#135) + [Rodos] + + Allow users to skip downloading release assets for specific repositories + while still backing up release metadata. Useful for starred repos with + large assets (e.g. syncthing with 27GB+). + + Usage: --skip-assets-on repo1 repo2 owner/repo3 + + Features: + - Space-separated repos (consistent with --exclude) + - Case-insensitive matching + - Supports both repo name and owner/repo format + + +0.56.0 (2025-12-11) +------------------- Fix ~~~ diff --git a/github_backup/__init__.py b/github_backup/__init__.py index 9dc8116..6e6e624 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = "0.56.0" +__version__ = "0.57.0"