Skip to content

Commit

Permalink
Merge pull request #38 from juliangehring/develop
Browse files Browse the repository at this point in the history
Release v2.0.1
  • Loading branch information
juliangehring authored Jan 12, 2019
2 parents eb49d14 + db5d431 commit 3030fa9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ notifications:

after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder(), flags="julia_$(VERSION.major)_$(VERSION.minor)")'
- julia -e 'using Pkg; Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))'
- julia -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps); include(joinpath("docs", "make.jl"))'

4 changes: 3 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
The Bootstrap.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2014-2018: Julian Gehring, Nikolaos Ignatiadis.
> Copyright (c) 2014-2019: Julian Gehring.
>
> Copyright (c) 2014-2016: Nikolaos Ignatiadis.
>
> Copyright (c) 2014: Jarno Leppänen.
>
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Bootstrap.jl News and Changes

## Version 2.0.1

### Changes

- Fix `Documenter` version to v0.19 for building the documentation (#35)
- Fix `convert` deprecation in `DataFrames`, bump required version to v0.16.0


## Version 2.0.0

### Interface changes
Expand Down
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
julia 0.7
StatsBase 0.24.0
Distributions 0.16.1
DataFrames 0.14.0
DataFrames 0.16.0
StatsModels 0.2.0
2 changes: 1 addition & 1 deletion test/test-bootsample-non-parametric.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ using StatsBase
n = 250

## 'city' dataset
citya = convert(Array, city)
citya = convert(Matrix, city)

city_ratio(x::AbstractArray) = mean(x[:,2]) ./ mean(x[:,1])
city_ratio(x::AbstractDataFrame) = mean(x[:X]) ./ mean(x[:U])
Expand Down

0 comments on commit 3030fa9

Please sign in to comment.