Skip to content

Commit

Permalink
Merge pull request #65 from juliangehring/develop
Browse files Browse the repository at this point in the history
Release v2.2.0
  • Loading branch information
juliangehring committed Sep 3, 2019
2 parents c2f9f76 + 6e4ae08 commit a447c29
Show file tree
Hide file tree
Showing 17 changed files with 136 additions and 445 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ language: julia

os:
- linux
- osx

julia:
- 1.0
- 1.1
- 1.2
- nightly

matrix:
Expand All @@ -22,7 +22,7 @@ notifications:
jobs:
include:
- stage: "Documentation"
julia: 1.1
julia: 1.2
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
Expand Down
264 changes: 0 additions & 264 deletions Manifest.toml

This file was deleted.

10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Bootstrap.jl News and Changes

## Version 2.2.0

### Changes

- Support StatsModels v0.6 with `FormulaTerm`. Contributed by Dave Kleinschmidt (@kleinschmidt) (#57).
- Use `RDatasets` instead of internal data sets. Contributed by David Widmann (@devmotion) (#60).
- Fix deprecations in `DataFrames` and `GLM` (#62).
- Increase compatibility with package management in newer julia versions (#61).


## Version 2.1.0

### Changes
Expand Down
12 changes: 9 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name = "Bootstrap"
uuid = "e28b5b4c-05e8-5b66-bc03-6f0c0a0a06e0"
version = "2.1.0"
license = "MIT"
authors = "Julian Gehring"
repository = "https://github.com/juliangehring/Bootstrap.jl"
version = "2.2.0"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand All @@ -11,12 +14,15 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"

[compat]
DataFrames = "≥ 0.19.0"
GLM = "≥ 1.3.0"
StatsModels = "≥ 0.6.0"
julia = "1"
StatsModels = "< 0.6.0"

[extras]
GLM = "38e38edf-8417-5370-95a0-9cbb8c7f171a"
RDatasets = "ce6b1742-4840-55fa-b093-852dadbb1d8b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "GLM"]
test = ["GLM", "RDatasets", "Test"]
4 changes: 0 additions & 4 deletions src/Bootstrap.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
__precompile__()

"""
# Bootstrap package
Expand All @@ -24,7 +22,6 @@ export
draw!,
rademacher,
mammen,
iquantile,
bootstrap,
BasicSampling,
AntitheticSampling,
Expand Down Expand Up @@ -60,7 +57,6 @@ include("bootsampling.jl")
include("get.jl")
include("show.jl")
include("confint.jl")
include("datasets/Datasets.jl")
include("deprecates.jl")

end
Loading

0 comments on commit a447c29

Please sign in to comment.