Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request: ~
push:
branches:
- master
- main

jobs:
lint:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 3 additions & 3 deletions doc/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
Loading