Skip to content

Commit

Permalink
Rename master branch to main
Browse files Browse the repository at this point in the history
  • Loading branch information
oschulz committed Mar 14, 2022
1 parent 2d535de commit e4fcc53
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- master
- main
- dev
- 'releases/**'
tags: '*'
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 @@
[![Documentation for stable version](https://img.shields.io/badge/docs-stable-blue.svg)](https://bat.github.io/BAT.jl/stable)
[![Documentation for development version](https://img.shields.io/badge/docs-dev-blue.svg)](https://bat.github.io/BAT.jl/dev)
[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md)
[![Build Status](https://github.com/bat/BAT.jl/workflows/CI/badge.svg?branch=master)](https://github.com/bat/BAT.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/bat/BAT.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/bat/BAT.jl)
[![Build Status](https://github.com/bat/BAT.jl/workflows/CI/badge.svg?branch=main)](https://github.com/bat/BAT.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/bat/BAT.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/bat/BAT.jl)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2587213.svg)](https://doi.org/10.5281/zenodo.2587213)

Welcome to BAT, a Bayesian analysis toolkit in Julia.
Expand Down
4 changes: 2 additions & 2 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ julia> using Pkg
julia> pkg"add BAT ArraysOfArrays Distributions ElasticArrays IntervalSets Parameters Plots ValueShapes StatsBase Tables TypedTables"
```

To install the latest development version of BAT (master branch), instead of the latest stable release, use
To install the latest development version of BAT (main branch), instead of the latest stable release, use

```julia
julia> pkg"add BAT#master"
julia> pkg"add BAT#main"
```

If you'd like to [precompile](https://docs.julialang.org/en/v1/manual/modules/index.html#Module-initialization-and-precompilation-1) all installed packages right aways (otherwise they'll get precompiled when loaded for the first time), run
Expand Down

0 comments on commit e4fcc53

Please sign in to comment.