Skip to content

Commit 7fe1c47

Browse files
authored
Merge pull request #87 from KWB-R/dev
Bugfix release v0.2.1
2 parents c0b5fa8 + c14e9f8 commit 7fe1c47

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: kwb.pkgbuild
22
Title: R package for standardised development at KWB
3-
Version: 0.2.0
3+
Version: 0.2.1
44
Authors@R:
55
c(person(given = "Michael",
66
family = "Rustler",

NEWS.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
# [kwb.pkgbuild 0.2.1](https://github.com/KWB-R/kwb.pkgbuild/releases/tag/v0.2.1) <small>2022-02-09</small>
2+
3+
* Bugfix for correctly writing package documentation website URL to `_pkgdown.yml`
4+
15
# [kwb.pkgbuild 0.2.0](https://github.com/KWB-R/kwb.pkgbuild/releases/tag/v0.2.0) <small>2022-01-20</small>
26

3-
* Documentation website with `pkgdown (>= 2.0.2)` and new [KWB website](https://kompetenz-wasser.de): - Design: now using `bootstrap5` and colors slightly adapted to KWB design.
7+
* Documentation website with `pkgdown (>= 2.0.2)` and new [KWB website](https://kompetenz-wasser.de):
8+
9+
- Design: now using `bootstrap5` and colors slightly adapted to KWB design.
10+
411
- URL to KWB logo was updated due to new website.
12+
513
- **Attention: URLs to projects (including logos) need to be corrected manually (for old `_pkgdown.yml` files**
614

715
* Deleted functions for unused CIs `travis` and `appveyor`

R/use_pkg.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ use_pkg <- function(
6363
}
6464

6565
# Create PKGDOWN YML
66-
use_pkgdown(author, copyright_holder$name, pkg, user, domain)
66+
use_pkgdown(author, copyright_holder$name, pkg$name, user, domain)
6767

6868
# Update Github Actions
6969
use_ghactions()

R/use_pkgdown.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use_pkgdown <- function(
3838
authors <- c(authors, stats::setNames(nm = copyright_holder_name, list(list(
3939
href = "http://www.kompetenz-wasser.de",
4040
html = paste0(
41-
"<img src='https://publications.kompetenz-wasser.de/img/KWB-Logo.svg",
41+
"<img src='https://publications.kompetenz-wasser.de/img/KWB-Logo.svg'",
4242
" alt='KWB' width='72' />")
4343
))))
4444
}

0 commit comments

Comments
 (0)