From 14131f566f5ed912a398d16158304d2a16674512 Mon Sep 17 00:00:00 2001 From: Jon Harmon Date: Fri, 17 Oct 2025 06:44:25 -0500 Subject: [PATCH] Update links for wranglezone org --- .github/CONTRIBUTING.md | 2 +- .github/SUPPORT.md | 4 ++-- .github/scripts/fetch-issues.R | 2 +- DESCRIPTION | 6 +++--- README.Rmd | 8 ++++---- README.md | 8 ++++---- _pkgdown.yml | 2 +- man/hrmn-package.Rd | 6 +++--- 8 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 31e3386..3f8bd85 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -16,7 +16,7 @@ If you’ve found a bug, please file an issue that illustrates the bug with a mi ### Pull request process -* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis::create_from_github("jonthegeek/hrmn", fork = TRUE)`. +* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis::create_from_github("wranglezone/hrmn", fork = TRUE)`. * Install all development dependencies with `devtools::install_dev_deps()`, and then make sure the package passes R CMD check by running `devtools::check()`. If R CMD check doesn't pass cleanly, it's a good idea to ask for help before continuing. diff --git a/.github/SUPPORT.md b/.github/SUPPORT.md index d47dfe2..476fd4d 100644 --- a/.github/SUPPORT.md +++ b/.github/SUPPORT.md @@ -16,12 +16,12 @@ Armed with your reprex, the next step is to figure out where to ask. * If it's a question: It's best to ask on the [Data Science Learning Community Slack](https://DSLC.io/). Other options include [Posit Community](https://community.rstudio.com/), and StackOverflow. There are more people there to answer questions. -* If it's a bug: you're in the right place, [file an issue](https://github.com/jonthegeek/hrmn/issues/new). +* If it's a bug: you're in the right place, [file an issue](https://github.com/wranglezone/hrmn/issues/new). * If you're not sure: let the community help you figure it out! If your problem _is_ a bug or a feature request, you can easily return here and report it. -Before opening a new issue, be sure to [search issues and pull requests](https://github.com/jonthegeek/hrmn/issues) to make sure the bug hasn't been reported and/or already fixed in the development version. +Before opening a new issue, be sure to [search issues and pull requests](https://github.com/wranglezone/hrmn/issues) to make sure the bug hasn't been reported and/or already fixed in the development version. By default, the search will be pre-populated with `is:issue is:open`. You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/) (e.g. `is:pr`, `is:closed`) as needed. For example, you'd simply remove `is:open` to search _all_ issues in the repo, open or closed. diff --git a/.github/scripts/fetch-issues.R b/.github/scripts/fetch-issues.R index 85e2169..55466d8 100644 --- a/.github/scripts/fetch-issues.R +++ b/.github/scripts/fetch-issues.R @@ -7,7 +7,7 @@ repo_full_name <- Sys.getenv("GITHUB_REPOSITORY") if (repo_full_name == "") { stop( "Error: GITHUB_REPOSITORY environment variable not set.\n", - "Please set it for local testing (e.g., Sys.setenv(GITHUB_REPOSITORY = 'jonthegeek/hrmn')).", + "Please set it for local testing (e.g., Sys.setenv(GITHUB_REPOSITORY = 'wranglezone/hrmn')).", call. = FALSE ) } diff --git a/DESCRIPTION b/DESCRIPTION index d9d4846..6ac05a0 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -9,9 +9,9 @@ Description: A common early step during data analysis is "data consistent format, with consistent column names, classes, and values. The goal of 'hrmn' is to make this process as easy as it can be. License: MIT + file LICENSE -URL: https://jonthegeek.github.io/hrmn/, - https://github.com/jonthegeek/hrmn -BugReports: https://github.com/jonthegeek/hrmn/issues +URL: https://hrmn.wrangle.zone/, + https://github.com/wranglezone/hrmn +BugReports: https://github.com/wranglezone/hrmn/issues Depends: R (>= 4.1) Imports: diff --git a/README.Rmd b/README.Rmd index a73a622..87e7415 100644 --- a/README.Rmd +++ b/README.Rmd @@ -18,8 +18,8 @@ knitr::opts_chunk$set( [![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental) [![CRAN status](https://www.r-pkg.org/badges/version/hrmn)](https://CRAN.R-project.org/package=hrmn) -[![Codecov test coverage](https://codecov.io/gh/jonthegeek/hrmn/graph/badge.svg)](https://app.codecov.io/gh/jonthegeek/hrmn) -[![R-CMD-check](https://github.com/jonthegeek/hrmn/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jonthegeek/hrmn/actions/workflows/R-CMD-check.yaml) +[![Codecov test coverage](https://codecov.io/gh/wranglezone/hrmn/graph/badge.svg)](https://app.codecov.io/gh/wranglezone/hrmn) +[![R-CMD-check](https://github.com/wranglezone/hrmn/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/wranglezone/hrmn/actions/workflows/R-CMD-check.yaml) A common early step during data analysis is data harmonization: converting disparate datasets into a unified, consistent format, with consistent column names, classes, and values. The goal of hrmn is to make this process as easy as it can be. @@ -32,7 +32,7 @@ You can install the development version of hrmn from [GitHub](https://github.com ``` r # install.packages("pak") -pak::pak("jonthegeek/hrmn") +pak::pak("wranglezone/hrmn") ``` ## Usage @@ -43,4 +43,4 @@ Once a specification is defined, the **`harmonize_*()`** family (e.g., `harmoniz ## Code of Conduct -Please note that the hrmn project is released with a [Contributor Code of Conduct](https://jonthegeek.github.io/hrmn/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. +Please note that the hrmn project is released with a [Contributor Code of Conduct](https://hrmn.wrangle.zone/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. diff --git a/README.md b/README.md index 5ec1a20..dc79ad0 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](h [![CRAN status](https://www.r-pkg.org/badges/version/hrmn)](https://CRAN.R-project.org/package=hrmn) [![Codecov test -coverage](https://codecov.io/gh/jonthegeek/hrmn/graph/badge.svg)](https://app.codecov.io/gh/jonthegeek/hrmn) -[![R-CMD-check](https://github.com/jonthegeek/hrmn/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jonthegeek/hrmn/actions/workflows/R-CMD-check.yaml) +coverage](https://codecov.io/gh/wranglezone/hrmn/graph/badge.svg)](https://app.codecov.io/gh/wranglezone/hrmn) +[![R-CMD-check](https://github.com/wranglezone/hrmn/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/wranglezone/hrmn/actions/workflows/R-CMD-check.yaml) A common early step during data analysis is data harmonization: @@ -35,7 +35,7 @@ You can install the development version of hrmn from ``` r # install.packages("pak") -pak::pak("jonthegeek/hrmn") +pak::pak("wranglezone/hrmn") ``` ## Usage @@ -60,5 +60,5 @@ that cannot be conformed to the specification. ## Code of Conduct Please note that the hrmn project is released with a [Contributor Code -of Conduct](https://jonthegeek.github.io/hrmn/CODE_OF_CONDUCT.html). By +of Conduct](https://hrmn.wrangle.zone/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. diff --git a/_pkgdown.yml b/_pkgdown.yml index 571e70e..fc6ff19 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,4 +1,4 @@ -url: https://jonthegeek.github.io/hrmn/ +url: https://hrmn.wrangle.zone/ development: mode: auto template: diff --git a/man/hrmn-package.Rd b/man/hrmn-package.Rd index 8109398..d7bd7b7 100644 --- a/man/hrmn-package.Rd +++ b/man/hrmn-package.Rd @@ -11,9 +11,9 @@ A common early step during data analysis is "data harmonization" -- converting d \seealso{ Useful links: \itemize{ - \item \url{https://jonthegeek.github.io/hrmn/} - \item \url{https://github.com/jonthegeek/hrmn} - \item Report bugs at \url{https://github.com/jonthegeek/hrmn/issues} + \item \url{https://hrmn.wrangle.zone/} + \item \url{https://github.com/wranglezone/hrmn} + \item Report bugs at \url{https://github.com/wranglezone/hrmn/issues} } }