From b414cfc8edf6bfabdee79a9bf378fc9ba83919f6 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Mon, 14 Nov 2022 12:45:43 -0500 Subject: [PATCH 1/5] Increment version number to 0.3.0 --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index d0e3949..03f4908 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: bigD Title: Flexibly Format Dates and Times to a Given Locale -Version: 0.2.0.9000 +Version: 0.3.0 Authors@R: person("Richard", "Iannone", , "riannone@me.com", c("aut", "cre"), comment = c(ORCID = "0000-0003-3925-190X")) Description: Format dates and times flexibly and to whichever locales diff --git a/NEWS.md b/NEWS.md index 57cb21d..2c543ee 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# bigD (development version) +# bigD 0.3.0 # bigD 0.2.0 From d8806ba90407e7cc3436277a07a9efa6fcfdecc4 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Mon, 14 Nov 2022 12:52:17 -0500 Subject: [PATCH 2/5] Update NEWS.md --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 2c543ee..071722c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # bigD 0.3.0 +* The locale's territory is now better resolved for week in month calculations. + +* Corrected the formatting of localized GMT formats. + # bigD 0.2.0 * New package with everything you need to format dates and times. From 47b347ddd873236ca2ea31953de113ad71e811a7 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Fri, 8 Nov 2024 10:28:17 -0500 Subject: [PATCH 3/5] Remove duplicate Authors Field --- DESCRIPTION | 2 -- 1 file changed, 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e8fcf8f..6216cd5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,8 +2,6 @@ Type: Package Package: bigD Title: Flexibly Format Dates and Times to a Given Locale Version: 0.3.0 -Authors@R: person("Richard", "Iannone", , "riannone@me.com", c("aut", "cre"), - comment = c(ORCID = "0000-0003-3925-190X")) Description: Format dates and times flexibly and to whichever locales make sense. Parses dates, times, and date-times in various formats (including string-based ISO 8601 constructions). The formatting syntax gives From 5f6ab733c5956f44adf8577f0745f4bdb52a05c8 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Fri, 8 Nov 2024 10:28:29 -0500 Subject: [PATCH 4/5] Correct typo in documentation --- R/fdt.R | 2 +- man/fdt.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/fdt.R b/R/fdt.R index 2499fef..366b177 100644 --- a/R/fdt.R +++ b/R/fdt.R @@ -97,7 +97,7 @@ #' strings produce which outputs (e.g., `"y"` for the year). A common pattern is #' characters that are used consecutively to produce variations on a date, time, #' or timezone output. Say that the year in the input is 2015. If using `"yy"` -#' you'll get `"15"` but with `"yyyy"` the output becomes `"1999"`. There's a +#' you'll get `"15"` but with `"yyyy"` the output becomes `"2015"`. There's a #' whole lot of this, so the following subsections try to illustrate as best as #' possible what each string will produce. All of the examples will use this #' string-based datetime input unless otherwise indicated: diff --git a/man/fdt.Rd b/man/fdt.Rd index e1fb520..fbb1e87 100644 --- a/man/fdt.Rd +++ b/man/fdt.Rd @@ -137,7 +137,7 @@ The characters used in patterns are tabulated below to show which specific strings produce which outputs (e.g., \code{"y"} for the year). A common pattern is characters that are used consecutively to produce variations on a date, time, or timezone output. Say that the year in the input is 2015. If using \code{"yy"} -you'll get \code{"15"} but with \code{"yyyy"} the output becomes \code{"1999"}. There's a +you'll get \code{"15"} but with \code{"yyyy"} the output becomes \code{"2015"}. There's a whole lot of this, so the following subsections try to illustrate as best as possible what each string will produce. All of the examples will use this string-based datetime input unless otherwise indicated: From 4c5df70df412f3f13e28d75c202fbba1a20f5665 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Fri, 8 Nov 2024 10:41:54 -0500 Subject: [PATCH 5/5] Add tibble to Suggests --- DESCRIPTION | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 6216cd5..7dc84f6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -25,7 +25,8 @@ Depends: R (>= 3.3.0) Suggests: covr, - testthat (>= 3.0.0) + testthat (>= 3.0.0), + tibble (>= 3.2.1) Roxygen: list(markdown = TRUE) Config/testthat/edition: 3 Config/testthat/parallel: true