Version: 0.6 Date: 2015-01-23 Text: New features Version: 0.6 Date: 2015-01-23 Text: Add `pipeline` function to support expression-based pipeline evaluation. (#60) Version: 0.6 Date: 2015-01-23 Text: Piping to string now `cat` the string in the console. (#61) Version: 0.6 Date: 2015-01-23 Text: Question mark now supports binary operation `("message" ? expression)` in which `expression` is evaluated while `"message"` is printed ahead of its value. (#62) Version: 0.6 Date: 2015-01-23 Text: Improvements Version: 0.6 Date: 2015-01-23 Text: `<<-` and `->>` now correctly performs global assignment in enclosed expression in a pipeline. (#65) Version: 0.5 Date: 2014-09-30 Category: Remove deprecated operators (%:>% and %|>%), deprecated closure fun() in Pipe object, and deprecated `->` to build lambda expression Text: Version: 0.5 Date: 2014-09-30 Category: Support assignment in () with `<-` and Text: Version: 0.5 Date: 2014-09-30 Category: Improve the implementation of functions Text: Version: 0.5 Date: 2014-09-30 Category: Fix bugs Text: Version: 0.4-3 Category: Add syntax for assignment: Side effect with a symbol Text: Version: 0.4-3 Category: Update documentation Text: Version: 0.4-3 Category: Fix bugs for Pipe object Text: Version: 0.4-2 Date: 2014-08-22 Category: Deprecate fun() in Pipe object, use .() instead Text: Version: 0.4-2 Date: 2014-08-22 Category: Deprecate lambda expression like (x -> expr), use (x ~ expr) instead Text: Version: 0.4-2 Date: 2014-08-22 Category: Add side-effect piping Text: Version: 0.4-2 Date: 2014-08-22 Category: Add question piping Text: Version: 0.4-2 Date: 2014-08-22 Category: Add subsetting, extracting, assigning to Pipe object Text: Version: 0.4-2 Date: 2014-08-22 Category: Resolve compatibility issues with data.table (#28 Text: Version: 0.4-2 Date: 2014-08-22 Category: Resolve evaluation environment issues (#20, #34 Text: Version: 0.4-1 Date: 2014-08-15 Category: Add element extraction syntax Text: Version: 0.4-1 Date: 2014-08-15 Category: Improve Pipe function Text: Version: 0.4-1 Date: 2014-08-15 Category: Refine vignettes and documentation Text: Version: 0.4 Date: 2014-08-08 Category: MAJOR API BREAK: %>>% operator handles all pipeline mechanisms (see README) and other operators are deprecated Text: Version: 0.4 Date: 2014-08-08 Category: Add Pipe object that supports object-based pipeline operation Text: Version: 0.3-3 Date: 2014-08-02 Category: Resolve issue #16 so that call-using functions will not get the piped object Text: Version: 0.3-2 Date: 2014-07-26 Category: Add vignettes Text: Version: 0.3-2 Date: 2014-07-26 Category: Minor improvements Text: Version: 0.3-1 Date: 2014-06-28 Category: Minor implementation improvements Text: Version: 0.3 Date: 2014-06-03 Category: Major operator change Text: Version: 0.3 Date: 2014-06-03 Category: To avoid naming conflict with magrittr package (issue #12), the first-argument pipe operator is changed to `%>>%` and free pipe operator with dot is changed to `%:>%`. Now the three operators are Text: Version: 0.3 Date: 2014-06-03 Category: First-argument piping: Text: Version: 0.3 Date: 2014-06-03 Category: Free piping: Text: Version: 0.3 Date: 2014-06-03 Category: Lambda piping: Text: Version: 0.3 Date: 2014-06-03 Category: Now this package can perfectly coexist with magritter and dplyr but is not backward compatible with previous code if old operators are used, please notify the potential issues and upgrade to the new set of operators if possible Text: Version: 0.2-4 Date: 2014-05-31 Category: Refined to adapt to CRAN standards Text: Version: 0.2-3 Category: Minor changes to function descriptions Text: Version: 0.2-2 Category: This is a major refine of code for better compatibility Text: Version: 0.2-2 Category: Resolved issue #9 and #5 Text: Version: 0.2-2 Category: Now the code is highly compatible with functions that have ... as an argument Text: Version: 0.2-1 Category: This version is not compatible with v0.2 due to the switch of lambda expression symbol from `->` to Text: Version: 0.2-1 Category: The reason is that using ~ directly refers to formula object that is more well defined and usable in this case, which does not diminish any feature in v0.2 but allows lambda expressions to store in symbols Text: Version: 0.2 Category: mtcars Text: (df -> lm(mpg ~ ., data=df)) 2. `%>>%` no longer allows naked function calling Version: 0.2 Category: rnorm(100,10,1) %>>% log %>>% diff Text: Version: 0.2 Category: is no longer allowed. You should always use `%>%` to call by function name like Text: Version: 0.2 Category: rnorm(100,10,1) %>% log %>% diff Text: Version: 0.1 Category: Initial release Text: