Skip to content

Commit 8cf86ed

Browse files
Merge pull request #122 from juliangehring/develop
Release v0.5.0
2 parents fde6246 + c22df3f commit 8cf86ed

36 files changed

+8484
-3614
lines changed

.appveyor.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.codecov.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Testing
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
test:
9+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
version:
14+
- '1.4'
15+
- '1'
16+
os:
17+
- ubuntu-latest
18+
- macOS-latest
19+
- windows-latest
20+
arch:
21+
- x64
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: julia-actions/setup-julia@v1
25+
with:
26+
version: ${{ matrix.version }}
27+
arch: ${{ matrix.arch }}
28+
- uses: julia-actions/julia-buildpkg@latest
29+
- uses: julia-actions/julia-runtest@latest
30+
- uses: julia-actions/julia-uploadcodecov@latest
31+
env:
32+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
tags: [v*]
9+
pull_request:
10+
11+
jobs:
12+
Documenter:
13+
name: Documentation
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: julia-actions/julia-buildpkg@latest
18+
- uses: julia-actions/julia-docdeploy@latest
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.travis.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MultipleTesting.jl package is licensed under the MIT "Expat" License:
22

3-
> Copyright (c) 2014-2017: Julian Gehring, Nikolaos Ignatiadis.
3+
> Copyright (c) 2014-2021: Julian Gehring, Nikolaos Ignatiadis.
44
>
55
> Copyright (c) 2014: Dirk Schumacher.
66
>

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ test:
99

1010
docs:
1111
julia --color=$(COLOR) docs/make.jl
12-

NEWS.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# MultipleTesting.jl News and Changes
22

3+
## Version 0.5.0
4+
5+
### Changes
6+
7+
- Improve the reordering strategy of p-values in adjustment methods. This change saves one sorting step for all adjustment methods that require sorted p-values. As a result, the performance for these methods is significantly improved.
8+
- Rename p-value combination types, in order to improve consistency with other types.
9+
10+
11+
### Support
12+
13+
- Supports julia v1.4 and newer
14+
15+
316
## Version 0.4.1
417

518
### Changes

Project.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "MultipleTesting"
2+
uuid = "f8716d33-7c4a-5097-896f-ce0ecbd3ef6b"
3+
license = "MIT"
4+
authors = "Julian Gehring"
5+
repository = "https://github.com/juliangehring/MultipleTesting.jl"
6+
version = "0.5.0"
7+
8+
[deps]
9+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
10+
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
11+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
12+
13+
[compat]
14+
Distributions = "0.22 - 0.25"
15+
SpecialFunctions = "1.0"
16+
StatsBase = "0.32 - 0.33"
17+
julia = "1.4"
18+
19+
[extras]
20+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
21+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
22+
23+
[targets]
24+
test = ["Test", "Random"]

0 commit comments

Comments
 (0)