From 1bc31da119af5b6584033e86c37545858ef83771 Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Tue, 18 Oct 2022 08:54:52 +0200 Subject: [PATCH] Rename master branch to main in repo (#107) * Rename master references to main * Mark devbranch as main --- .github/workflows/ci.yml | 2 +- .github/workflows/docs.yml | 2 +- README.md | 4 ++-- docs/make.jl | 2 +- docs/src/index.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d84fead9..76336857 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,7 @@ name: CI on: push: - branches: [master] + branches: [main] tags: [v*] pull_request: schedule: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 153f78f4..b41c33c5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,7 +1,7 @@ name: Documentation on: push: - branches: [master] + branches: [main] tags: [v*] pull_request: jobs: diff --git a/README.md b/README.md index f6965e0c..749d7b4e 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ A Julia implementation of quaternions. [![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaGeometry.github.io/Quaternions.jl/stable) [![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeometry.github.io/Quaternions.jl/dev) -[![Build Status](https://github.com/JuliaGeometry/Quaternions.jl/workflows/CI/badge.svg)](https://github.com/JuliaGeometry/Quaternions.jl/actions?query=workflow%3ACI+branch%3Amaster) -[![codecov](https://codecov.io/gh/JuliaGeometry/Quaternions.jl/branch/master/graph/badge.svg?token=dJBiR91dCD)](https://codecov.io/gh/JuliaGeometry/Quaternions.jl) +[![Build Status](https://github.com/JuliaGeometry/Quaternions.jl/workflows/CI/badge.svg)](https://github.com/JuliaGeometry/Quaternions.jl/actions?query=workflow%3ACI+branch%3Amain) +[![codecov](https://codecov.io/gh/JuliaGeometry/Quaternions.jl/branch/main/graph/badge.svg?token=dJBiR91dCD)](https://codecov.io/gh/JuliaGeometry/Quaternions.jl) [![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl) [Quaternions](http://en.wikipedia.org/wiki/Quaternion) are best known for their suitability diff --git a/docs/make.jl b/docs/make.jl index f1525e74..b32dfa71 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -20,5 +20,5 @@ makedocs(; ) deploydocs(; - repo="github.com/JuliaGeometry/Quaternions.jl", + repo="github.com/JuliaGeometry/Quaternions.jl", devbranch="main", ) diff --git a/docs/src/index.md b/docs/src/index.md index a228d4a9..602e134a 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -6,7 +6,7 @@ A Julia package implementing [quaternions](https://en.wikipedia.org/wiki/Quatern The documentation is still work in progress. For more information, see also * [README in the repository](https://github.com/JuliaGeometry/Quaternions.jl) - * [Tests in the repository](https://github.com/JuliaGeometry/Quaternions.jl/tree/master/test) + * [Tests in the repository](https://github.com/JuliaGeometry/Quaternions.jl/tree/main/test) Feel free to [open pull requests](https://github.com/JuliaGeometry/Quaternions.jl/pulls) and improve this document! ## Installation