diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 961401341c..8503870cb7 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -7,7 +7,7 @@ currently being supported with security updates. | Version | Supported | | ---------- | ------------------ | -| >= 0.10.0 | :white_check_mark: | +| >= 0.10.1 | :white_check_mark: | ## Reporting a Vulnerability diff --git a/CITATION.cff b/CITATION.cff index 9e256cda7c..caab392133 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,7 +3,7 @@ message: 'If you wish to cite the "gt" package use:' type: software license: MIT title: 'gt: Easily Create Presentation-Ready Display Tables' -version: 0.10.0 +version: 0.10.1 abstract: Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables with a cohesive set of table parts. Table values can be formatted using any of the included formatting diff --git a/DESCRIPTION b/DESCRIPTION index 461290a4ed..8223efc9e7 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Type: Package Package: gt -Version: 0.10.0.9000 +Version: 0.10.1 Title: Easily Create Presentation-Ready Display Tables Description: Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables diff --git a/LICENSE b/LICENSE index 6b2b9bf636..d565ddc1da 100644 --- a/LICENSE +++ b/LICENSE @@ -1,2 +1,2 @@ -YEAR: 2018-2023 +YEAR: 2018-2024 COPYRIGHT HOLDER: gt authors diff --git a/LICENSE.md b/LICENSE.md index a55baef57e..d17fc7ae3f 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2018-2023 gt authors +Copyright (c) 2018-2024 gt authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation diff --git a/NEWS.md b/NEWS.md index 73dfca3588..e1d156553c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,10 +1,38 @@ -# gt (development version) +# gt 0.10.1 -* The performance of rendering bigger tables as HTML has been improved and is now up to 3 times faster than before (@mgirlich, #1470). +## Improvements to nanoplots -* `gtsave()` now returns the file path invisibly instead of `TRUE` (@olivroy, #1478). +* Box plots can now be generated via `cols_nanoplot()` by using `plot_type = "boxplot"`. These plots are laid out horizontally and will, by default, share the same plot axis across rows. (#1527) -* Most functions in gt receive a better error message if they don't provide a `gt_tbl` as an input (@olivroy, #1504). +* We can now have single line bar plots generated through `cols_nanoplot()`. If the plot_type is set to `"bar"` and single values are found, then horizontal bars will be generated and will be comparable across rows. (#1514, #1515, #1519) + +* The `autohide` argument was added to the `cols_nanoplot()` function so that columns containing input data for nanoplots could be conveniently hidden from final presentation. (#1533) + +* Added option (the `data_area_fill_color` arg in `nanoplot_options()`) to change fill color of nanoplot data area for line-type plots (#1521). (#1534) + +## Minor improvements and bug fixes + +* The performance of rendering bigger tables as HTML has been improved and is now up to three times faster than before. (#1470, thanks @mgirlich) + +* Introduced a small performance improvement by no longer calling `utils::packageVersion()` internally (#1524). (#1525, thank you @slodge) + +* Code and test refactoring was performed to generally improve performance and code readability. (#1480, thanks @olivroy) +* The `gtsave()` function now returns the file path invisibly instead of `TRUE`. (#1478, thank you @olivroy) + +* Most functions now produce better error messages if not provided with a `gt_tbl` object. (#1504, c/o @olivroy) + +* The URL formatting through `fmt_url()` has been improved by preventing link text breaking across lines (#1509). (#1537) +* We now remove some unnecessary newlines in the HTML text produced by `as_raw_html()`, which caused an issue when integrating **gt** tables into **blastula** email messages (#1506). (#1520) + +* The `tab_spanner_delim()` now lets you use `delim` strings longer than a single character (#1469). (#1513) + +* Fix for footnotes in LaTeX tables where no footnote marks are to be added; this previously showed `"NA"` as the mark in the footer area but this is no longer displayed (#1416). (#1512, thanks @kbrevoort) + +* LaTeX tables can now have their overall width specified (#119, #329). (#1495, thank you @kbrevoort) + +* Fix issue where a `cols_width()` specification involving percentage values fails for LaTeX tables (#1465). (#1495, thanks again @kbrevoort!) + +* Several documentation fixes were made to address inconsistencies and improve clarity. (#1491) # gt 0.10.0 diff --git a/R/as_data_frame.R b/R/as_data_frame.R index be67bd8cb5..24068822e8 100644 --- a/R/as_data_frame.R +++ b/R/as_data_frame.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/build_data.R b/R/build_data.R index cc51034cbd..ee1cccd869 100644 --- a/R/build_data.R +++ b/R/build_data.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/compile_scss.R b/R/compile_scss.R index 89c7915587..cdfe51f1ad 100644 --- a/R/compile_scss.R +++ b/R/compile_scss.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/data_color.R b/R/data_color.R index 0b4856cb73..b1d4f7f75a 100644 --- a/R/data_color.R +++ b/R/data_color.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/datasets.R b/R/datasets.R index 10f306602f..93890ffa9a 100644 --- a/R/datasets.R +++ b/R/datasets.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt__.R b/R/dt__.R index 9f9ab5bc5d..6eee742267 100644 --- a/R/dt__.R +++ b/R/dt__.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_body.R b/R/dt_body.R index 51a75c39ed..0682a6774d 100644 --- a/R/dt_body.R +++ b/R/dt_body.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_boxhead.R b/R/dt_boxhead.R index 3c2145fe06..666e2cad7e 100644 --- a/R/dt_boxhead.R +++ b/R/dt_boxhead.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_cols_merge.R b/R/dt_cols_merge.R index cfd4888d1b..822a02efb8 100644 --- a/R/dt_cols_merge.R +++ b/R/dt_cols_merge.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_data.R b/R/dt_data.R index 19a4520de6..01fa733698 100644 --- a/R/dt_data.R +++ b/R/dt_data.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_footnotes.R b/R/dt_footnotes.R index 915f67de45..a56e303b4c 100644 --- a/R/dt_footnotes.R +++ b/R/dt_footnotes.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_formats.R b/R/dt_formats.R index 60da3d4978..3166b91b71 100644 --- a/R/dt_formats.R +++ b/R/dt_formats.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_groups_rows.R b/R/dt_groups_rows.R index b9d65e8a8f..87766aa4d7 100644 --- a/R/dt_groups_rows.R +++ b/R/dt_groups_rows.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_has_built.R b/R/dt_has_built.R index 5905836a32..89dce80156 100644 --- a/R/dt_has_built.R +++ b/R/dt_has_built.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_heading.R b/R/dt_heading.R index 87e8b395df..455cadc7f4 100644 --- a/R/dt_heading.R +++ b/R/dt_heading.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_locale.R b/R/dt_locale.R index e5dbbcf27a..bc3f3643e3 100644 --- a/R/dt_locale.R +++ b/R/dt_locale.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_options.R b/R/dt_options.R index 76fdc993e3..0eabea46a8 100644 --- a/R/dt_options.R +++ b/R/dt_options.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_row_groups.R b/R/dt_row_groups.R index d61ce4fc3d..9159eedc87 100644 --- a/R/dt_row_groups.R +++ b/R/dt_row_groups.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_source_notes.R b/R/dt_source_notes.R index f5536e925c..d06850f3cd 100644 --- a/R/dt_source_notes.R +++ b/R/dt_source_notes.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_spanners.R b/R/dt_spanners.R index 5c19b22b90..d5c049e03e 100644 --- a/R/dt_spanners.R +++ b/R/dt_spanners.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_stub_df.R b/R/dt_stub_df.R index 048c4383c8..0e95c7db91 100644 --- a/R/dt_stub_df.R +++ b/R/dt_stub_df.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_stubhead.R b/R/dt_stubhead.R index 30825c9732..85a7507911 100644 --- a/R/dt_stubhead.R +++ b/R/dt_stubhead.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_styles.R b/R/dt_styles.R index ed8faf379c..3a82680abe 100644 --- a/R/dt_styles.R +++ b/R/dt_styles.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_substitutions.R b/R/dt_substitutions.R index 1ed0b51fbb..9a3076f492 100644 --- a/R/dt_substitutions.R +++ b/R/dt_substitutions.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_summary.R b/R/dt_summary.R index 76fe24f957..a410209f16 100644 --- a/R/dt_summary.R +++ b/R/dt_summary.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/dt_transforms.R b/R/dt_transforms.R index 79f74091bd..e7ca3ba13d 100644 --- a/R/dt_transforms.R +++ b/R/dt_transforms.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/export.R b/R/export.R index 33f6d0a375..f9955bf41e 100644 --- a/R/export.R +++ b/R/export.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/format_data.R b/R/format_data.R index 1647335266..8346054422 100644 --- a/R/format_data.R +++ b/R/format_data.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/format_vec.R b/R/format_vec.R index 376dce7970..4e80dadd29 100644 --- a/R/format_vec.R +++ b/R/format_vec.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/gt-package.R b/R/gt-package.R index 6a689e93b9..712340efd8 100644 --- a/R/gt-package.R +++ b/R/gt-package.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/gt.R b/R/gt.R index 2f01bfa2c4..591a2c75e1 100644 --- a/R/gt.R +++ b/R/gt.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/gt_group.R b/R/gt_group.R index b61a4e7b78..57db0dc497 100644 --- a/R/gt_group.R +++ b/R/gt_group.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/gt_preview.R b/R/gt_preview.R index b4313a6560..0e0072f3c3 100644 --- a/R/gt_preview.R +++ b/R/gt_preview.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/gt_split.R b/R/gt_split.R index 83f5d04658..e3f1f6d332 100644 --- a/R/gt_split.R +++ b/R/gt_split.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/helpers.R b/R/helpers.R index 2f58d9dac5..521c145994 100644 --- a/R/helpers.R +++ b/R/helpers.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/image.R b/R/image.R index 040de7e34e..b1c2b1c8a8 100644 --- a/R/image.R +++ b/R/image.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/info_tables.R b/R/info_tables.R index d5fcfba7ab..d6d5f5c421 100644 --- a/R/info_tables.R +++ b/R/info_tables.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/knitr-utils.R b/R/knitr-utils.R index 6e73d67c51..47efbabf21 100644 --- a/R/knitr-utils.R +++ b/R/knitr-utils.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/location_methods.R b/R/location_methods.R index 55a11afa19..c2ddad67e4 100644 --- a/R/location_methods.R +++ b/R/location_methods.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/modify_columns.R b/R/modify_columns.R index ab8515ce70..21fe317ae3 100644 --- a/R/modify_columns.R +++ b/R/modify_columns.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/modify_rows.R b/R/modify_rows.R index 41f82c0092..c9cb9341de 100644 --- a/R/modify_rows.R +++ b/R/modify_rows.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/opts.R b/R/opts.R index 48969ad23b..bf6e113af6 100644 --- a/R/opts.R +++ b/R/opts.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/print.R b/R/print.R index 7274cf303e..b0dcb6d876 100644 --- a/R/print.R +++ b/R/print.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/reexports.R b/R/reexports.R index 3fc6008af4..477d649e69 100644 --- a/R/reexports.R +++ b/R/reexports.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/render_as_html.R b/R/render_as_html.R index 361b218126..384013e6dd 100644 --- a/R/render_as_html.R +++ b/R/render_as_html.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/render_as_i_html.R b/R/render_as_i_html.R index 3207931e83..5e9ea728b2 100644 --- a/R/render_as_i_html.R +++ b/R/render_as_i_html.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/resolver.R b/R/resolver.R index c2a69cba65..4968d4e76b 100644 --- a/R/resolver.R +++ b/R/resolver.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/rows_add.R b/R/rows_add.R index 8e132ce278..f78e571bbd 100644 --- a/R/rows_add.R +++ b/R/rows_add.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/shiny.R b/R/shiny.R index efebfb6eb9..3eea0dc979 100644 --- a/R/shiny.R +++ b/R/shiny.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/substitution.R b/R/substitution.R index 4831f7ecc7..ed816a932e 100644 --- a/R/substitution.R +++ b/R/substitution.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/summary_rows.R b/R/summary_rows.R index 0d785cf240..4a437bf5bc 100644 --- a/R/summary_rows.R +++ b/R/summary_rows.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/tab_create_modify.R b/R/tab_create_modify.R index ecdd916d6d..af80be79c9 100644 --- a/R/tab_create_modify.R +++ b/R/tab_create_modify.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/text_transform.R b/R/text_transform.R index 7f28bb4203..87d04ed5f5 100644 --- a/R/text_transform.R +++ b/R/text_transform.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils.R b/R/utils.R index 9e0b052269..50f86aff6b 100644 --- a/R/utils.R +++ b/R/utils.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_color_contrast.R b/R/utils_color_contrast.R index 19872fce3a..3d2e0c3daf 100644 --- a/R/utils_color_contrast.R +++ b/R/utils_color_contrast.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_environments.R b/R/utils_environments.R index 42477b9fb3..6c281d6a94 100644 --- a/R/utils_environments.R +++ b/R/utils_environments.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_examples.R b/R/utils_examples.R index ccd24d1974..cb557524b2 100644 --- a/R/utils_examples.R +++ b/R/utils_examples.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_formatters.R b/R/utils_formatters.R index 5da5d929ed..a4d2e72068 100644 --- a/R/utils_formatters.R +++ b/R/utils_formatters.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_general_str_formatting.R b/R/utils_general_str_formatting.R index fcef69bbd8..8e8afb0e8b 100644 --- a/R/utils_general_str_formatting.R +++ b/R/utils_general_str_formatting.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_pipe.R b/R/utils_pipe.R index e3d536e8d8..8ff4afc598 100644 --- a/R/utils_pipe.R +++ b/R/utils_pipe.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_plots.R b/R/utils_plots.R index 7d8871ca83..076afd6fcf 100644 --- a/R/utils_plots.R +++ b/R/utils_plots.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_render_common.R b/R/utils_render_common.R index ae2cd85128..35522727b9 100644 --- a/R/utils_render_common.R +++ b/R/utils_render_common.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_render_html.R b/R/utils_render_html.R index 9edb392e8a..0270e488ef 100644 --- a/R/utils_render_html.R +++ b/R/utils_render_html.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_render_latex.R b/R/utils_render_latex.R index cd3409b12c..f2e0987fca 100644 --- a/R/utils_render_latex.R +++ b/R/utils_render_latex.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_render_rtf.R b/R/utils_render_rtf.R index 62f3982009..ed8e49e696 100644 --- a/R/utils_render_rtf.R +++ b/R/utils_render_rtf.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_render_xml.R b/R/utils_render_xml.R index ce988de6a5..6625fd1a45 100644 --- a/R/utils_render_xml.R +++ b/R/utils_render_xml.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/utils_units.R b/R/utils_units.R index 34552086bd..3ccf9f3017 100644 --- a/R/utils_units.R +++ b/R/utils_units.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/z_utils_render_footnotes.R b/R/z_utils_render_footnotes.R index dfdac04bbd..3d60b25323 100644 --- a/R/z_utils_render_footnotes.R +++ b/R/z_utils_render_footnotes.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html diff --git a/R/zzz.R b/R/zzz.R index fc2ecbb0a4..7d869bf229 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -14,7 +14,7 @@ # # This file is part of the 'rstudio/gt' project. # -# Copyright (c) 2018-2023 gt authors +# Copyright (c) 2018-2024 gt authors # # For full copyright and license information, please look at # https://gt.rstudio.com/LICENSE.html