Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rollupTree
Title: Perform Recursive Computations
Version: 0.3.0
Version: 0.3.0.9000
Authors@R:
person(given=c("James", "Steven"), family="Jenkins",
email = "sjenkins@studioj.us",
Expand Down
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# rollupTree (development version)

# rollupTree 0.3.0

* `default_validate_dag()` added (#11)
* `default_validate_dag()` added (#11).

* badges and github actions added to README.md (#14).

# rollupTree 0.2.0

Expand Down
3 changes: 3 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ knitr::opts_chunk$set(

<!-- badges: start -->

[![CRAN status](https://www.r-pkg.org/badges/version/rollupTree)](https://CRAN.R-project.org/package=rollupTree)
[![R-CMD-check](https://github.com/jsjuni/rollupTree/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jsjuni/rollupTree/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/jsjuni/rollupTree/graph/badge.svg)](https://app.codecov.io/gh/jsjuni/rollupTree)
<!-- badges: end -->

rollupTree implements a general function for computations in which some property of a parent element is a combination of corresponding properties of its child elements. The mass of an assembly, for example, is the sum of the masses of its subassemblies, and the mass of each subassembly is the sum of masses of its parts, etc.
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@

<!-- badges: start -->

[![CRAN
status](https://www.r-pkg.org/badges/version/rollupTree)](https://CRAN.R-project.org/package=rollupTree)
[![R-CMD-check](https://github.com/jsjuni/rollupTree/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jsjuni/rollupTree/actions/workflows/R-CMD-check.yaml)
[![Codecov test
coverage](https://codecov.io/gh/jsjuni/rollupTree/graph/badge.svg)](https://app.codecov.io/gh/jsjuni/rollupTree)
<!-- badges: end -->

rollupTree implements a general function for computations in which some
Expand Down