Skip to content

Commit

Permalink
Merge tag 'v0.3'
Browse files Browse the repository at this point in the history
- New `cut_format()` with ability to tweak label formatting, and more sensible defaults (#9).
    - With examples.
    - Throws an error if `breaks` is an atomic value.
- New `list_to_df()` and `df_to_list()`.
- New vectorized switch function `vswitch`.
- Export all helper functions used by `thisfile()`.
- `gdiff()` does not attempt to maintain class information, the called function is supposed to do this.
- `gdiff()` accepts a factor as input.
- Determine knitr input via `knitr::current_input()` (#6).
- Use AppVeyor (checks on Windows), Coveralls (coverage analysis) and lintr (static code analysis).
- Fix CRAN checks.
  • Loading branch information
Kirill Müller committed Feb 16, 2016
2 parents 792756c + 6d96496 commit da8ea8f
Show file tree
Hide file tree
Showing 32 changed files with 798 additions and 59 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@
^Makefile$
^Makefile\.in$
^makeR$
^cran-comments\.md$
^revdep$
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/NEWS.md merge=union
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@
*.o
*.so
/inst/web
/man
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Encoding: UTF-8
Package: kimisc
Type: Package
Title: Kirill's miscellaneous functions
Version: 0.2-6
Title: Kirill's Miscellaneous Functions
Version: 0.3
Date: 2016-02-14
Authors@R: person(given = "Kirill", family = "Müller", role = c("aut",
"cre"), email = "krlmlr+r@mailbox.org")
Expand All @@ -17,7 +17,7 @@ Description: A collection of useful functions not found anywhere else,
alternative interface to assign().
License: GPL-3
Imports: plyr, pryr
Suggests: testthat (>= 0.9.1.9000)
Suggests: testthat (>= 0.10.0)
Enhances: knitr
URL: http://krlmlr.github.io/kimisc
URLNote: https://github.com/krlmlr/kimisc
Expand Down
45 changes: 11 additions & 34 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,19 @@
Version 0.2-6 (2016-02-14)
===

- Prepare CRAN release.


Version 0.2-5 (2016-01-24)
===

- `cut_format()` now throws an error if `breaks` is an atomic value.


Version 0.2-4 (2016-01-22)
===

- Add examples for `cut_format()`.
- `cut_format()` gains `paren` argument that allows control over the opening and closing parentheses.


Version 0.2-3 (2016-01-22)
Version 0.3 (2016-02-12)
===

- New `cut_format()` with ability to tweak label formatting, and more sensible defaults (#9).
- With examples.
- Throws an error if `breaks` is an atomic value.
- New `list_to_df()` and `df_to_list()`.
- New vectorized switch function `vswitch`.
- Export all helper functions used by `thisfile()`.
- `gdiff()` does not attempt to maintain class information, the called function is supposed to do this.
- `gdiff()` accepts a factor as input.
- Determine knitr input via `knitr::current_input()` (#6).
- Use AppVeyor (checks on Windows), Coveralls (coverage analysis) and lintr (static code analysis).
- Fix CRAN checks.


Version 0.2-2 (2015-09-09)
===

- new functions `list_to_df` and `df_to_list`
- new vectorized switch function `vswitch`
- `gdiff` does not attempt to maintain class information, the called function is
supposed to do this
- `gdiff` accepts a factor as input
- determine knitr input via `knitr::current_input` (#6)
- export all helper functions used by `thisfile`
- use AppVeyor (checks on Windows), Coveralls (coverage analysis) and lintr
(static code analysis)
- fix CRAN checks

Version 0.2-1 (2014-04-02)
===

Expand Down
21 changes: 0 additions & 21 deletions R/zzz-autoroxy.R

This file was deleted.

14 changes: 14 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Test environments
* local Ubuntu 15.10 install, R 3.2.3
* win-builder (devel and release)

## R CMD check results

0 errors | 0 warnings | 1 note

* Now using umlaut in my last name, and new e-mail address
* Spelling of my first name

## Reverse dependencies

* I have run R CMD check on the one downstream dependency with no failures.
31 changes: 31 additions & 0 deletions man/coalesce.na.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 50 additions & 0 deletions man/cut_format.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions man/df_to_list.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions man/export.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions man/export.list.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions man/gdiff.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions man/hms.to.seconds.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit da8ea8f

Please sign in to comment.