Skip to content

Commit 282d710

Browse files
authored
Merge pull request #15 from KWB-R/dev
Bugfix release v0.7.1
2 parents d4b0d9b + 49ce40e commit 282d710

6 files changed

Lines changed: 16 additions & 10 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
matrix:
2424
config:
2525
- {os: macOS-latest, r: 'release'}
26-
- {os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
26+
- {os: ubuntu-24.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
2727
- {os: windows-latest, r: 'devel'}
2828
- {os: windows-latest, r: 'oldrel'}
2929
- {os: windows-latest, r: 'release'}
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Cache R packages
5252
if: runner.os != 'Windows'
53-
uses: actions/cache@v1
53+
uses: actions/cache@v4
5454
with:
5555
path: ${{ env.R_LIBS_USER }}
5656
key: ${{ runner.os }}-r-${{ matrix.config.r }}-3-${{ hashFiles('depends.Rds') }}

.github/workflows/pkgdown.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717

1818
- uses: r-lib/actions/setup-r@v2
1919

@@ -27,7 +27,7 @@ jobs:
2727
shell: Rscript {0}
2828

2929
- name: Cache R packages
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ${{ env.R_LIBS_USER }}
3333
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}

.github/workflows/pr-commands.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
env:
1111
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- uses: r-lib/actions/pr-fetch@v2
1515
with:
1616
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v4
3737
- uses: r-lib/actions/pr-fetch@v2
3838
with:
3939
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
env:
1717
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020

2121
- uses: r-lib/actions/setup-r@v2
2222

@@ -30,7 +30,7 @@ jobs:
3030
shell: Rscript {0}
3131

3232
- name: Cache R packages
33-
uses: actions/cache@v1
33+
uses: actions/cache@v4
3434
with:
3535
path: ${{ env.R_LIBS_USER }}
3636
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: kwb.db
22
Title: Functions supporting data base access
3-
Version: 0.7.0
3+
Version: 0.7.1
44
Authors@R:
55
c(person(given = "Hauke",
66
family = "Sonnenberg",
@@ -39,7 +39,7 @@ Suggests:
3939
testthat (>= 2.2.1),
4040
xml2
4141
Remotes:
42-
github::cran/RODBC@1.3-16,
42+
github::cran/RODBC@1.3-26,
4343
github::hsonne/odbc32@r3.0.0,
4444
github::kwb-r/kwb.datetime,
4545
github::kwb-r/kwb.utils

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [kwb.db 0.7.1](https://github.com/KWB-R/kwb.db/releases/tag/v0.7.1) <small>2025-06-05</small>
2+
3+
* Use latest RODBC release (2024-12-12) from [https://github.com/cran/RODBC](https://github.com/cran/RODBC)
4+
to fix installation problems on Windows (Ubuntu & macOS package installation still
5+
fails on GH actions)
6+
17
# [kwb.db 0.7.0](https://github.com/KWB-R/kwb.db/releases/tag/v0.7.0) <small>2023-09-25</small>
28

39
* Add and export `read_schemata()`, `read_relations()`, `merge_relations()`

0 commit comments

Comments
 (0)