Skip to content

Commit

Permalink
Update DESCRIPTION and NEWS for CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
egnha committed Aug 22, 2022
1 parent c9f6445 commit 478c580
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: gestalt
Title: Tools for Making and Combining Functions
Version: 0.1.9.9000
Version: 0.2.0
Authors@R: person("Eugene", "Ha", , "[email protected]", c("aut", "cre"))
Description: Provides a suite of function-building tools centered around a
(forward) composition operator, %>>>%, which extends the semantics of the
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gestalt

## 0.1.9.9000
## 0.2.0

### Breaking changes

Expand All @@ -20,7 +20,7 @@
`compose(f, g)(x, y, ...)` is now equivalent to a call like
`(function(...) g(f(...)))(x, y, ...)`. (Previously, the initial
function was called with a complete set of formal arguments, which in cases
where formal arguments are mutated and mutually referenced (e.g., in the
where formal arguments are mutated or mutually referenced (e.g., in the
formals of `base::objects()`), could lead the initial function to wrongly
determine the "missingness" of an argument or wrongly evaluate an argument's
default value.) As before, the signature of `compose(f, ...)` inherits the
Expand Down

0 comments on commit 478c580

Please sign in to comment.