diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a78b21b..34432b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.11" - name: Install Dependencies @@ -48,7 +48,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.pythonversion }} - name: Install Dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc8c71c..cedf95e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.11" - name: Install pypa/build diff --git a/CHANGELOG.md b/CHANGELOG.md index 000c027..41fe2ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v5.0.1 (2022-12-07) + +- Fixes a bug that tries removing the authenticated user from a list so we don't double dip git operations even when there is no authenticated user (eg: using the `--https` flag) +- Fixes a bug that allowed users to use both the `--token` and `--https` when it should only be one or the other + ## v5.0.0 (2022-10-19) - Adds a new `--fork` CLI arg which adds support to fork the repos or gists specified via `users`, `orgs`, `stars`, or `gists` diff --git a/setup.py b/setup.py index 40cb30f..e4c0e16 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setuptools.setup( name='github-archive', - version='5.0.0', + version='5.0.1', description=( 'A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive.' ),