Skip to content

Commit

Permalink
bump to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
renkun-ken committed Jan 23, 2015
1 parent 710ce92 commit 5a645b5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pipeR
Type: Package
Title: Multi-paradigm pipeline implementation for R
Version: 0.5.4
Version: 0.6
Author: Kun Ren <[email protected]>
Maintainer: Kun Ren <[email protected]>
Description: Provides various styles of function chaining methods: Pipe
Expand All @@ -13,7 +13,7 @@ Description: Provides various styles of function chaining methods: Pipe
readable and friendly to a wide variety of operations.
Depends:
R (>= 2.15)
Date: 2014-12-26
Date: 2015-01-23
Suggests:
testthat
License: MIT + file LICENSE
Expand Down
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 0.6
===
* New features
* Add `pipeline` function to support expression-based pipeline evaluation. (#60)
* Piping to string now `cat` the string in the console. (#61)
* Question mark now supports binary operation `("message" ? expression)` in which
`expression` is evaluated while `"message"` is printed ahead of its value. (#62)
* Improvements
* `<<-` and `->>` now correctly performs global assignment in enclosed expression in
a pipeline. (#65)

Version 0.5
===
Remove deprecated operators (%:>% and %|>%), deprecated closure fun() in Pipe object, and deprecated `->` to build lambda expression.
Expand Down

0 comments on commit 5a645b5

Please sign in to comment.