Skip to content

Commit a78fd28

Browse files
committed
Rename package (pluralize)
1 parent 8c9c706 commit a78fd28

File tree

8 files changed

+25
-28
lines changed

8 files changed

+25
-28
lines changed

CITATION.cff

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
cff-version: 1.2.0
2-
title: BiNormalDistribution.jl
3-
message: >-
4-
If you use this software, please cite it using the
5-
metadata from this file.
2+
title: BiNormalDistributions.jl
63
type: software
74
authors:
85
- given-names: Abhro
9-
repository-code: 'https://github.com/abhro/BiNormalDistribution.jl'
10-
url: 'https://abhro.github.io/BiNormalDistribution.jl'
6+
repository-code: 'https://github.com/abhro/BiNormalDistributions.jl'
7+
url: 'https://abhro.github.io/BiNormalDistributions.jl'
118
license: MIT

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "BiNormalDistribution"
1+
name = "BiNormalDistributions"
22
uuid = "35cb82aa-8885-40e5-a2ce-8461cb5c8dfc"
33
authors = ["Abhro R. and contributors"]
44
version = "0.0.3-DEV"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# BiNormalDistribution
1+
# BiNormalDistributions
22

3-
[![Stable](https://img.shields.io/badge/docs-blue.svg)](https://abhro.github.io/BiNormalDistribution.jl/)
4-
[![Build Status](https://github.com/abhro/BiNormalDistribution.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/abhro/BiNormalDistribution.jl/actions/workflows/CI.yml?query=branch%3Amain)
5-
[![Coverage](https://codecov.io/gh/abhro/BiNormalDistribution.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/abhro/BiNormalDistribution.jl)
3+
[![Stable](https://img.shields.io/badge/docs-blue.svg)](https://abhro.github.io/BiNormalDistributions.jl/)
4+
[![Build Status](https://github.com/abhro/BiNormalDistributions.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/abhro/BiNormalDistributions.jl/actions/workflows/CI.yml?query=branch:main)
5+
[![Coverage](https://codecov.io/gh/abhro/BiNormalDistributions.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/abhro/BiNormalDistributions.jl)
66
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
77

88
Two-component Gaussian mixture.

docs/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[deps]
2-
BiNormalDistribution = "35cb82aa-8885-40e5-a2ce-8461cb5c8dfc"
2+
BiNormalDistributions = "35cb82aa-8885-40e5-a2ce-8461cb5c8dfc"
33
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
44

5-
[sources.BiNormalDistribution]
5+
[sources.BiNormalDistributions]
66
path = ".."

docs/make.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
using BiNormalDistribution
1+
using BiNormalDistributions
22
using Documenter
33

4-
DocMeta.setdocmeta!(BiNormalDistribution, :DocTestSetup, :(using BiNormalDistribution); recursive=true)
4+
DocMeta.setdocmeta!(BiNormalDistributions, :DocTestSetup, :(using BiNormalDistributions); recursive=true)
55

66
makedocs(;
7-
modules=[BiNormalDistribution],
7+
modules=[BiNormalDistributions],
88
authors="Abhro R. and contributors",
9-
sitename="BiNormalDistribution.jl",
9+
sitename="BiNormalDistributions.jl",
1010
format=Documenter.HTML(;
11-
canonical="https://abhro.github.io/BiNormalDistribution.jl",
11+
canonical="https://abhro.github.io/BiNormalDistributions.jl",
1212
edit_link="main",
1313
assets=String[],
1414
),
@@ -18,6 +18,6 @@ makedocs(;
1818
)
1919

2020
deploydocs(;
21-
repo="github.com/abhro/BiNormalDistribution.jl",
21+
repo="github.com/abhro/BiNormalDistributions.jl",
2222
devbranch="main",
2323
)

docs/src/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
```@meta
2-
CurrentModule = BiNormalDistribution
2+
CurrentModule = BiNormalDistributions
33
```
44

5-
# BiNormalDistribution
5+
# BiNormalDistributions
66

7-
Documentation for [BiNormalDistribution](https://github.com/abhro/BiNormalDistribution.jl).
7+
Documentation for [BiNormalDistributions](https://github.com/abhro/BiNormalDistributions.jl).
88

99
## Index
1010
```@index
1111
```
1212

1313
## Types reference
1414
```@autodocs
15-
Modules = [BiNormalDistribution]
15+
Modules = [BiNormalDistributions]
1616
Order = [:type]
1717
```
1818

1919
## Functions reference
2020
```@autodocs
21-
Modules = [BiNormalDistribution]
21+
Modules = [BiNormalDistributions]
2222
Order = [:function]
2323
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module BiNormalDistribution
1+
module BiNormalDistributions
22

33
using Distributions
44
import Random

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using BiNormalDistribution
1+
using BiNormalDistributions
22
using Test
33
using Aqua
44
using StableRNGs
55
using Distributions: Uniform
66
using Statistics
77

8-
@testset "BiNormalDistribution" begin
8+
@testset "BiNormalDistributions" begin
99
@testset "Code quality (Aqua)" begin
10-
Aqua.test_all(BiNormalDistribution, piracies = false)
10+
Aqua.test_all(BiNormalDistributions, piracies = false)
1111
end
1212

1313
# test distribution with unit mean, unit variance

0 commit comments

Comments
 (0)