Skip to content

Commit

Permalink
Rename master branch to main in repo (JuliaGeometry#107)
Browse files Browse the repository at this point in the history
* Rename master references to main

* Mark devbranch as main
  • Loading branch information
sethaxen authored Oct 18, 2022
1 parent 80ecb45 commit 1bc31da
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI
on:
push:
branches: [master]
branches: [main]
tags: [v*]
pull_request:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Documentation
on:
push:
branches: [master]
branches: [main]
tags: [v*]
pull_request:
jobs:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ makedocs(;
)

deploydocs(;
repo="github.com/JuliaGeometry/Quaternions.jl",
repo="github.com/JuliaGeometry/Quaternions.jl", devbranch="main",
)
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1bc31da

Please sign in to comment.