Skip to content

Commit 36d59c3

Browse files
authored
Merge pull request #242 from StochasticTree/cran-prep-misc
CRAN submission prep
2 parents 459dd78 + 74c6b7f commit 36d59c3

File tree

9 files changed

+433
-268
lines changed

9 files changed

+433
-268
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: stochtree
22
Title: Stochastic Tree Ensembles (XBART and BART) for Supervised Learning and Causal Inference
3-
Version: 0.1.1
3+
Version: 0.2.0
44
Authors@R:
55
c(
66
person("Drew", "Herren", email = "drewherrenopensource@gmail.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-4109-6611")),

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = "StochTree"
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.1.1
51+
PROJECT_NUMBER = 0.2.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

cleanup

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
rm -f src/Makevars

configure

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.72 for stochtree 0.1.1.
3+
# Generated by GNU Autoconf 2.72 for stochtree 0.2.0.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation,
@@ -600,8 +600,8 @@ MAKEFLAGS=
600600
# Identity of this package.
601601
PACKAGE_NAME='stochtree'
602602
PACKAGE_TARNAME='stochtree'
603-
PACKAGE_VERSION='0.1.1'
604-
PACKAGE_STRING='stochtree 0.1.1'
603+
PACKAGE_VERSION='0.2.0'
604+
PACKAGE_STRING='stochtree 0.2.0'
605605
PACKAGE_BUGREPORT=''
606606
PACKAGE_URL=''
607607

@@ -1205,7 +1205,7 @@ if test "$ac_init_help" = "long"; then
12051205
# Omit some internal or obsolete options to make the list less imposing.
12061206
# This message is too long to be a string in the A/UX 3.1 sh.
12071207
cat <<_ACEOF
1208-
'configure' configures stochtree 0.1.1 to adapt to many kinds of systems.
1208+
'configure' configures stochtree 0.2.0 to adapt to many kinds of systems.
12091209
12101210
Usage: $0 [OPTION]... [VAR=VALUE]...
12111211
@@ -1267,7 +1267,7 @@ fi
12671267

12681268
if test -n "$ac_init_help"; then
12691269
case $ac_init_help in
1270-
short | recursive ) echo "Configuration of stochtree 0.1.1:";;
1270+
short | recursive ) echo "Configuration of stochtree 0.2.0:";;
12711271
esac
12721272
cat <<\_ACEOF
12731273
@@ -1335,7 +1335,7 @@ fi
13351335
test -n "$ac_init_help" && exit $ac_status
13361336
if $ac_init_version; then
13371337
cat <<\_ACEOF
1338-
stochtree configure 0.1.1
1338+
stochtree configure 0.2.0
13391339
generated by GNU Autoconf 2.72
13401340
13411341
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -1372,7 +1372,7 @@ cat >config.log <<_ACEOF
13721372
This file contains any messages produced by compilers while
13731373
running configure, to aid debugging if configure makes a mistake.
13741374
1375-
It was created by stochtree $as_me 0.1.1, which was
1375+
It was created by stochtree $as_me 0.2.0, which was
13761376
generated by GNU Autoconf 2.72. Invocation command line was
13771377
13781378
$ $0$ac_configure_args_raw
@@ -2385,7 +2385,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
23852385
# report actual input values of CONFIG_FILES etc. instead of their
23862386
# values after options handling.
23872387
ac_log="
2388-
This file was extended by stochtree $as_me 0.1.1, which was
2388+
This file was extended by stochtree $as_me 0.2.0, which was
23892389
generated by GNU Autoconf 2.72. Invocation command line was
23902390
23912391
CONFIG_FILES = $CONFIG_FILES
@@ -2440,7 +2440,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
24402440
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
24412441
ac_cs_config='$ac_cs_config_escaped'
24422442
ac_cs_version="\\
2443-
stochtree config.status 0.1.1
2443+
stochtree config.status 0.2.0
24442444
configured by $0, generated by GNU Autoconf 2.72,
24452445
with options \\"\$ac_cs_config\\"
24462446
@@ -3000,3 +3000,4 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
30003000
printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
30013001
fi
30023002

3003+

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://github.com/microsoft/LightGBM/blob/master/R-package/configure.ac
44

55
AC_PREREQ(2.69)
6-
AC_INIT([stochtree], [0.1.1], [], [stochtree], [])
6+
AC_INIT([stochtree], [0.2.0], [], [stochtree], [])
77
# Note: consider making version number dynamic as in
88
# https://github.com/microsoft/LightGBM/blob/195c26fc7b00eb0fec252dfe841e2e66d6833954/build-cran-package.sh
99

0 commit comments

Comments
 (0)