From 4ee55f67186beb047f5e04556b2164ae39ffa8d0 Mon Sep 17 00:00:00 2001 From: sprak Date: Sun, 9 Aug 2026 16:18:16 -0400 Subject: [PATCH] Fix master references to main --- .github/workflows/code-quality.yml | 2 +- CHANGELOG.md | 4 ++++ README.md | 10 +++++----- doc/CONTRIBUTING.md | 6 +++--- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 5b9392c..1295b29 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -4,7 +4,7 @@ on: pull_request: ~ push: branches: - - master + - main jobs: lint: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bbcd1e..3309fc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 3.4.1 + +Fixing `master` references to point to `main` including code coverage setup. + ## 3.4.0 Upgrading dependencies and code coverage pipeline. diff --git a/README.md b/README.md index 68e0bfa..0570450 100644 --- a/README.md +++ b/README.md @@ -55,12 +55,12 @@ for build and continuous integration. ## Documentation All documentation can be found in the -[doc](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/master/doc) +[doc](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/main/doc) folder. ## Contributing -* [Getting Started](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/master/doc/CONTRIBUTING.md) -* [Bug Reports](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/master/doc/CONTRIBUTING.md#bug-reports) -* [Feature Requests](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/master/doc/CONTRIBUTING.md#feature-requests) -* [Pull Requests](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/master/doc/CONTRIBUTING.md#pull-requests) +* [Getting Started](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/main/doc/CONTRIBUTING.md) +* [Bug Reports](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/main/doc/CONTRIBUTING.md#bug-reports) +* [Feature Requests](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/main/doc/CONTRIBUTING.md#feature-requests) +* [Pull Requests](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/blob/main/doc/CONTRIBUTING.md#pull-requests) diff --git a/doc/CONTRIBUTING.md b/doc/CONTRIBUTING.md index 7e0af13..d1b7a2d 100644 --- a/doc/CONTRIBUTING.md +++ b/doc/CONTRIBUTING.md @@ -102,8 +102,8 @@ in the project: 2. If you cloned a while ago, get the latest changes from upstream: ```shell - git checkout master - git pull upstream master + git checkout main + git pull upstream main ``` 3. Create a new topic branch (off the main project development branch) to @@ -128,7 +128,7 @@ in the project: branch: ```shell - git pull [--rebase] upstream master + git pull [--rebase] upstream main ``` 7. Push your topic branch up to your fork: