Skip to content

Commit

Permalink
version 2.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
spgarbet authored and cran-robot committed Jul 26, 2024
1 parent e699eca commit e48e981
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: yaml
Type: Package
Title: Methods to Convert R Data to YAML and Back
Date: 2024-07-05
Version: 2.3.9
Date: 2024-07-22
Version: 2.3.10
Suggests: RUnit
Author: Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb],
Zhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb],
Expand All @@ -15,6 +15,6 @@ Description: Implements the 'libyaml' 'YAML' 1.1 parser and emitter
URL: https://github.com/vubiostat/r-yaml/
BugReports: https://github.com/vubiostat/r-yaml/issues
NeedsCompilation: yes
Packaged: 2024-07-05 14:37:49 UTC; garbetsp
Packaged: 2024-07-22 15:44:18 UTC; garbetsp
Repository: CRAN
Date/Publication: 2024-07-05 16:30:02 UTC
Date/Publication: 2024-07-26 15:10:02 UTC
8 changes: 4 additions & 4 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bbba10d958545e3425cc20f316d9da75 *COPYING
6604e5be6f72cfd7262278d024da7ea0 *DESCRIPTION
5278c4d7670de4f2da09d28f247ddf0c *DESCRIPTION
59797fdd34baf532ba0e4c97bc5e3cf8 *LICENSE
84e3c05130718b3c373f57fbb809cb86 *NAMESPACE
b901a42735294b31cf1d91b526714858 *R/as.yaml.R
Expand All @@ -21,14 +21,14 @@ f0258adf12eff3e4ef781d06ed5ca659 *inst/tests/test_write_yaml.R
f6e8413262b60d2b926f4cbad12b1bed *inst/tests/test_yaml_load_file.R
303be7867757feba4aad55b866e01946 *man/as.yaml.Rd
11563d3fabb3788f025131444aa35e8b *man/read_yaml.Rd
0b2030532868feea28c54a3600fddaa9 *man/verbatim_logical.Rd
7d3fa3c44907d6bc1f75218ce9320b18 *man/verbatim_logical.Rd
466b1a01bd0eead68a25633559e01ad3 *man/write_yaml.Rd
0bc574ee3d2e29384ea279c4f196f0ab *man/yaml.load.Rd
6b0576349be43cf3d872205b41aff77d *src/Makevars
67daa508265c6140db6d048c9a587978 *src/api.c
a2657fec1bbeca766a5e1cb0a9458a05 *src/dumper.c
e2a407572c0b2d2f37c8eafa9a04a62b *src/dumper.c
a085415195f7814d2bbca52ec4e517d1 *src/emitter.c
9cfda206be239794d470b8148bbc9a69 *src/implicit.c
523618f225516d85abf4c1c963aa0496 *src/implicit.c
adea9625fc3b724041e4a5e3947392f8 *src/loader.c
9c4f0181665c37d4bcdd05535e6a2130 *src/parser.c
d7543ba902b6e98b49fecc0f3276e0a1 *src/r_emit.c
Expand Down
12 changes: 6 additions & 6 deletions man/verbatim_logical.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
\alias{verbatim_logical}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{
Alternalte logical handler
Alternative logical handler
}
\description{
A yaml handler function that will cause logical vectors to emit true/false value
instead of yes/no value
A yaml handler function that causes logical vectors to emit
\code{true}/\code{false} instead of \code{yes}/\code{no} values.
}
\usage{
verbatim_logical(x)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{x}{
logical values to convert to \code{true} or \code{false}.
logical vector to convert to \code{true}/\code{false}.
}
}
\details{
To use pass into as.yaml as part of a handler arguement list like
\code{list(logical=verbatim_logical)}.
Pass this function to \code{\link[=as.yaml]{as.yaml()}} as part of the
\code{handler} argument list like \code{list(logical = verbatim_logical)}.
}
\value{
Returns a vector of strings of either \code{true} or \code{false} of class
Expand Down
1 change: 1 addition & 0 deletions src/dumper.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

#include <stdio.h> // snprintf
#include "yaml_private.h"

/*
Expand Down
1 change: 1 addition & 0 deletions src/implicit.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Generated by re2c 3.0 */
#line 1 "implicit.re"
#include <stddef.h> // size_t
#include "yaml.h"

char *Ryaml_find_implicit_tag(const char *str, size_t len)
Expand Down

0 comments on commit e48e981

Please sign in to comment.