This is an automated email from the git hooks/post-receive script.

benjamin-guest pushed a change to branch master
in repository r-cran-scales.

      from  09db1ec   Remove extra license file
       new  af8383a   Imported Upstream version 0.2.5
       new  1049a78   Merge tag 'upstream/0.2.5'
       new  36e1fda   Add changelog entry for new upstream release
       new  f16aa9d   Change architecture from all to any
       new  63a00e4   Update standards version to 3.9.6

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 DESCRIPTION                      |  29 +--
 MD5                              | 172 +++++++++--------
 NAMESPACE                        |  14 +-
 NEWS                             |  44 +++++
 R/RcppExports.R                  |  15 ++
 R/bounds.r                       |  21 +--
 R/colour-manip.r                 |  10 +-
 R/colour-mapping.r               | 386 +++++++++++++++++++++++++++++++++++++++
 R/date-time.r                    |  24 +--
 R/formatter.r                    | 139 ++++++++++++--
 R/pal-brewer.r                   |  33 ++--
 R/pal-hue.r                      |   2 +-
 R/pal-shape.r                    |   2 +-
 R/scales.r                       |   3 +-
 R/trans-date.r                   |   6 +-
 R/trans-numeric.r                |   5 +-
 README.md                        |   2 +
 build/partial.rdb                | Bin 6283 -> 8433 bytes
 debian/changelog                 |   6 +
 debian/control                   |   4 +-
 man/Range-class.Rd               |   3 +-
 man/abs_area.Rd                  |   3 +-
 man/alpha.Rd                     |   3 +-
 man/area_pal.Rd                  |   3 +-
 man/as.trans.Rd                  |   3 +-
 man/asn_trans.Rd                 |   3 +-
 man/atanh_trans.Rd               |   3 +-
 man/boxcox_trans.Rd              |   3 +-
 man/brewer_pal.Rd                |   9 +-
 man/cbreaks.Rd                   |   3 +-
 man/censor.Rd                    |   3 +-
 man/col2hcl.Rd                   |   7 +-
 man/col_numeric.Rd               | 108 +++++++++++
 man/colour_ramp.Rd               |  40 ++++
 man/comma_format.Rd              |  11 +-
 man/cscale.Rd                    |   3 +-
 man/date_breaks.Rd               |   3 +-
 man/date_format.Rd               |   8 +-
 man/date_trans.Rd                |   3 +-
 man/dichromat_pal.Rd             |   3 +-
 man/discard.Rd                   |   3 +-
 man/div_gradient_pal.Rd          |   3 +-
 man/dollar_format.Rd             |  27 ++-
 man/dscale.Rd                    |   3 +-
 man/exp_trans.Rd                 |   3 +-
 man/expand_range.Rd              |   3 +-
 man/extended_breaks.Rd           |   3 +-
 man/format_format.Rd             |   3 +-
 man/fullseq.Rd                   |   3 +-
 man/gradient_n_pal.Rd            |   3 +-
 man/grey_pal.Rd                  |   3 +-
 man/hue_pal.Rd                   |   8 +-
 man/identity_pal.Rd              |   3 +-
 man/identity_trans.Rd            |   3 +-
 man/linetype_pal.Rd              |   3 +-
 man/log1p_trans.Rd               |   7 +-
 man/log_breaks.Rd                |   3 +-
 man/log_trans.Rd                 |   3 +-
 man/manual_pal.Rd                |   3 +-
 man/math_format.Rd               |   5 +-
 man/muted.Rd                     |   3 +-
 man/ordinal_format.Rd            |  26 +++
 man/package-scales.Rd            |   3 +-
 man/parse_format.Rd              |   5 +-
 man/percent_format.Rd            |   5 +-
 man/pretty_breaks.Rd             |   3 +-
 man/probability_trans.Rd         |   3 +-
 man/reciprocal_trans.Rd          |   3 +-
 man/rescale.Rd                   |   3 +-
 man/rescale_max.Rd               |   3 +-
 man/rescale_mid.Rd               |   3 +-
 man/rescale_none.Rd              |   3 +-
 man/rescale_pal.Rd               |   3 +-
 man/reverse_trans.Rd             |   3 +-
 man/scientific_format.Rd         |   5 +-
 man/seq_gradient_pal.Rd          |   3 +-
 man/shape_pal.Rd                 |   3 +-
 man/show_col.Rd                  |   9 +-
 man/sqrt_trans.Rd                |   3 +-
 man/squish.Rd                    |   3 +-
 man/squish_infinite.Rd           |   3 +-
 man/time_trans.Rd                |   3 +-
 man/trans_breaks.Rd              |   3 +-
 man/trans_format.Rd              |   5 +-
 man/trans_new.Rd                 |   3 +-
 man/trans_range.Rd               |   3 +-
 man/unit_format.Rd               |  33 ++++
 man/wrap_format.Rd               |  25 +++
 man/zero_range.Rd                |  16 +-
 src/RcppExports.cpp              |  43 +++++
 src/colors.cpp                   | 242 ++++++++++++++++++++++++
 tests/testthat/test-colors.r     |  60 ++++++
 tests/testthat/test-formatter.r  | 111 +++++++----
 tests/testthat/test-zero-range.r |  11 +-
 94 files changed, 1608 insertions(+), 285 deletions(-)
 create mode 100644 R/RcppExports.R
 create mode 100644 R/colour-mapping.r
 create mode 100644 man/col_numeric.Rd
 create mode 100644 man/colour_ramp.Rd
 create mode 100644 man/ordinal_format.Rd
 create mode 100644 man/unit_format.Rd
 create mode 100644 man/wrap_format.Rd
 create mode 100644 src/RcppExports.cpp
 create mode 100644 src/colors.cpp
 create mode 100644 tests/testthat/test-colors.r

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/debian-med/r-cran-scales.git

_______________________________________________
debian-med-commit mailing list
debian-med-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to