Skip to content

Commit ef9c2e4

Browse files
Merge pull request #180 from mauro-ixpantia/178_prep-v0.3.5
Preparar el release v0.3.5
2 parents 7c55b1c + 6bd2859 commit ef9c2e4

File tree

8 files changed

+73
-3
lines changed

8 files changed

+73
-3
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@
77
^docs$
88
^pkgdown$
99
^LICENSE\.md$
10+
^\.github$
11+
^cran-comments\.md$

.github/workflows/R-CMD-check.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
branches: [main, master]
8+
9+
name: R-CMD-check.yaml
10+
11+
permissions: read-all
12+
13+
jobs:
14+
R-CMD-check:
15+
runs-on: ${{ matrix.config.os }}
16+
17+
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
18+
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
config:
23+
- {os: macos-latest, r: 'release'}
24+
- {os: windows-latest, r: 'release'}
25+
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26+
- {os: ubuntu-latest, r: 'release'}
27+
- {os: ubuntu-latest, r: 'oldrel-1'}
28+
29+
env:
30+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
31+
R_KEEP_PKG_SOURCE: yes
32+
33+
steps:
34+
- uses: actions/checkout@v4
35+
36+
- uses: r-lib/actions/setup-pandoc@v2
37+
38+
- uses: r-lib/actions/setup-r@v2
39+
with:
40+
r-version: ${{ matrix.config.r }}
41+
http-user-agent: ${{ matrix.config.http-user-agent }}
42+
use-public-rspm: true
43+
44+
- uses: r-lib/actions/setup-r-dependencies@v2
45+
with:
46+
extra-packages: any::rcmdcheck
47+
needs: check
48+
49+
- uses: r-lib/actions/check-r-package@v2
50+
with:
51+
upload-snapshots: true
52+
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: ixplorer
22
Title: Easy DataOps for R Users
3-
Version: 0.3.4
3+
Version: 0.3.4.9000
44
Authors@R:
55
c(person(given = "ixpantia, SRL",
66
role = "cph",
@@ -60,7 +60,7 @@ VignetteBuilder:
6060
knitr
6161
Encoding: UTF-8
6262
Roxygen: list(markdown = TRUE)
63-
RoxygenNote: 7.2.3
63+
RoxygenNote: 7.3.2
6464
URL: https://github.com/ixpantia/ixplorer
6565
BugReports: https://github.com/ixpantia/ixplorer/issues
6666
Config/testthat/edition: 3

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# ixplorer (development version)
2+
3+
* Nuevo `NEWS.md` para registrar cambios visibles a los usuarios (https://style.tidyverse.org/news.html).
4+
5+
# ixplorer v0.2.2 (2022-07-02)
6+
7+
* CRAN release.

R/create_users.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ create_users <- function(base_url, api_key, owner, repo, user_data_df,
209209
})
210210

211211
df <- dplyr::bind_rows(results)
212-
df <- dplyr::select(df, email, login, username, password)
212+
df <- dplyr::select(df, "email", "login", "username", "password")
213213
return(df)
214214
}
215215

README.Rmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ knitr::opts_chunk$set(
1818

1919
<!-- badges: start -->
2020
[![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer)
21+
[![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)
2122
<!-- badges: end -->
2223

2324
### Español

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
[![CRAN
99
status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer)
10+
[![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)
1011
<!-- badges: end -->
1112

1213
### Español

cran-comments.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## R CMD check results
2+
3+
0 errors | 0 warnings | 0 note
4+
5+
## revdepcheck results
6+
7+
There are currently no downstream dependencies for this package.

0 commit comments

Comments
 (0)