Skip to content

Commit 067da02

Browse files
committed
refactor: phase 4 prep + switch on Windows runner for R-CMD-check
1 parent c693e76 commit 067da02

File tree

5 files changed

+32
-11
lines changed

5 files changed

+32
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# Before CRAN submission: Uncomment Windows + R-devel below
4747
- {os: ubuntu-latest, r: 'release'}
4848
# - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
49-
# - {os: windows-latest, r: 'release'}
49+
- {os: windows-latest, r: 'release'}
5050

5151
env:
5252
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

DESCRIPTION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ URL: https://mobdb.jasonadle.dev, https://github.com/jasonad123/mobdb
1414
BugReports: https://github.com/jasonad123/mobdb/issues
1515
License: MIT + file LICENSE
1616
Encoding: UTF-8
17-
LazyData: true
1817
Roxygen: list(markdown = TRUE)
1918
RoxygenNote: 7.3.3
2019
Imports:

NEWS.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
# mobdb 1.0.0
22

3+
Initial CRAN release.
4+
35
## Major changes
46

7+
* First stable release prepared for CRAN submission
8+
* Comprehensive documentation and vignettes
9+
510
## Minor changes
611

7-
None.
12+
* Refined API response caching system
13+
* Improved error messages and user feedback
814

915
## Bug fixes
1016

11-
None.
17+
* Various stability improvements from pre-release testing
1218

1319
# mobdb 0.1.8
1420

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,7 @@
1010

1111
## Installation
1212

13-
To get started, install from CRAN:
14-
15-
```r
16-
install.packages("mobdb")
17-
```
18-
19-
Alternatively, latest versions are also available on [r-universe](https://jasonad123.r-universe.dev/mobdb):
13+
Install from [r-universe](https://jasonad123.r-universe.dev/mobdb):
2014

2115
```r
2216
# Install from r-universe

cran-comments.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,25 @@
33
0 errors | 0 warnings | 1 note
44

55
* This is a new release.
6+
7+
## Test environments
8+
9+
* Local: macOS 15.7.3, R 4.5.2
10+
* GitHub Actions: Ubuntu-latest, R release; Windows-latest, R Release
11+
* R-hub: Windows Server 2022, R-devel
12+
* R-hub: Ubuntu 22.04, R-devel
13+
14+
## Notes
15+
16+
* Examples that require API authentication or internet access are wrapped
17+
with `@examplesIf mobdb_can_run_examples()` which checks for both
18+
internet connectivity and API key availability.
19+
20+
* Vignettes are set to `eval = FALSE` to avoid API calls during CRAN checks.
21+
22+
* Tests use httptest2 for mocking HTTP responses, with `skip_on_cran()`
23+
for tests that require live API access.
24+
25+
## Downstream dependencies
26+
27+
There are currently no known downstream dependencies for this package.

0 commit comments

Comments
 (0)