Skip to content

Commit

Permalink
Merge pull request #180 from mauro-ixpantia/178_prep-v0.3.5
Browse files Browse the repository at this point in the history
Preparar el release v0.3.5
  • Loading branch information
mablan-ixpantia authored Nov 1, 2024
2 parents 7c55b1c + 6bd2859 commit ef9c2e4
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
^docs$
^pkgdown$
^LICENSE\.md$
^\.github$
^cran-comments\.md$
52 changes: 52 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check.yaml

permissions: read-all

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ixplorer
Title: Easy DataOps for R Users
Version: 0.3.4
Version: 0.3.4.9000
Authors@R:
c(person(given = "ixpantia, SRL",
role = "cph",
Expand Down Expand Up @@ -60,7 +60,7 @@ VignetteBuilder:
knitr
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.2
URL: https://github.com/ixpantia/ixplorer
BugReports: https://github.com/ixpantia/ixplorer/issues
Config/testthat/edition: 3
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ixplorer (development version)

* Nuevo `NEWS.md` para registrar cambios visibles a los usuarios (https://style.tidyverse.org/news.html).

# ixplorer v0.2.2 (2022-07-02)

* CRAN release.
2 changes: 1 addition & 1 deletion R/create_users.R
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ create_users <- function(base_url, api_key, owner, repo, user_data_df,
})

df <- dplyr::bind_rows(results)
df <- dplyr::select(df, email, login, username, password)
df <- dplyr::select(df, "email", "login", "username", "password")
return(df)
}

Expand Down
1 change: 1 addition & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ knitr::opts_chunk$set(

<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer)
[![R-CMD-check](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

### Español
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

[![CRAN
status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer)
[![R-CMD-check](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

### Español
Expand Down
7 changes: 7 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## R CMD check results

0 errors | 0 warnings | 0 note

## revdepcheck results

There are currently no downstream dependencies for this package.

0 comments on commit ef9c2e4

Please sign in to comment.