From 9849b09709493b7990000cd1dabb71ceebf99d50 Mon Sep 17 00:00:00 2001 From: jeremiedb Date: Mon, 17 Feb 2020 11:21:09 -0500 Subject: [PATCH 1/2] update .gitignore --- .gitignore | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 74c62a28..9410613f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,26 @@ +# Files generated by invoking Julia with --code-coverage *.jl.cov *.jl.*.cov + +# Files generated by invoking Julia with --track-allocation *.jl.mem -deps/deps.jl -data/ -.Rproj.user -.RData -.Rhistory -EvoTrees.jl.Rproj +# System-specific files and directories generated by the BinaryProvider and BinDeps packages +# They contain absolute paths specific to the host computer, and so should not be committed +deps/deps.jl +deps/build.log +deps/downloads/ +deps/usr/ +deps/src/ -.DS_Store +# Build artifacts for creating documentation generated by the Documenter package +docs/build/ +docs/site/ -JuliaGBT-Benchmark.R +# File generated by Pkg, the package manager, based on a corresponding Project.toml +# It records a fixed state of all packages used by the project. As such, it should not be +# committed for packages, but should be committed for applications that require a static +# environment. +Manifest.toml -/*/.DS_Store +data/ From 2665ab0dbe0ad582102667a1f6b88e2bd6a0e16a Mon Sep 17 00:00:00 2001 From: jeremiedb Date: Mon, 17 Feb 2020 11:29:21 -0500 Subject: [PATCH 2/2] 0.4.4 - Julia 1.0 compatibility --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 0a546d43..b42afb17 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "EvoTrees" uuid = "f6006082-12f8-11e9-0c9c-0d5d367ab1e5" authors = ["jeremiedb "] -version = "0.4.3" +version = "0.4.4" [deps] CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"