Skip to content

Commit

Permalink
Automated release blog post epiparameterDB - v0.1.0 (#353)
Browse files Browse the repository at this point in the history
* Automated release blog post `epiparameterDB` - `v0.1.0`

* Pre-knit release post

To render r chunks

* Add package link to release blog post

* Handle the case of a first release automated blog post

* Deduplicate blog post tags

* Update posts/s3-generic/index.qmd

* Add alt text

* Fix linting error for missing alt text (#350)

* Fix linting error for missing alt text

By replacing the screenshot by text

* Fix linting

---------

Co-authored-by: Chris Hartgerink <[email protected]>

* Create index.qmd

* Update index.qmd

* Fix linting

* Fix lint errors

* Tweak title

* Add conclusion

* Update index.qmd

* Add ready reckoners suggestion

* Update posts/covid-analysis/index.qmd

Co-authored-by: James Azam <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: Hugo Gruson <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: Sebastian Funk <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: Sebastian Funk <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: James Azam <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: James Azam <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: Sebastian Funk <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: James Azam <[email protected]>

* Add changes in response to reviews by Seb and James

* Fix linting

* Update posts/covid-analysis/index.qmd

Co-authored-by: Sebastian Funk <[email protected]>

* Update posts/covid-analysis/index.qmd

Co-authored-by: Chris Hartgerink <[email protected]>

* Update for first release

---------

Co-authored-by: epiverse-trace-bot <[email protected]>
Co-authored-by: Hugo Gruson <[email protected]>
Co-authored-by: Chris Hartgerink <[email protected]>
Co-authored-by: adamkucharski <[email protected]>
Co-authored-by: James Azam <[email protected]>
Co-authored-by: Sebastian Funk <[email protected]>
  • Loading branch information
7 people authored Dec 24, 2024
1 parent be864db commit d1e064d
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions posts/epiparameterDB_v0.1.0/index.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
title: "epiparameterDB v0.1.0"
author:
- name: "The Epiverse-TRACE development team"
date: "2024-12-18"
categories: [new-release]
---

We are very excited to announce the release of a new epiparameterDB version v0.1.0.
Here is an automatically generated summary of the changes in this version.

This is the first minor release of the `{epiparameterDB}` R package. It contains the epidemiological parameter database originally part of the `{epiparameter}` R package.

## New features

* The first release contains the parameter database (`parameters.json`) from the `{epiparameter}` package v0.3.0.
* Functionality to read the JSON file (`parameters.json`), render the database as a vignette (`database.Rmd`), and validate the JSON database with a data dictionary (`data_dictionary.json`) using a GitHub actions workflow (`validate-json.yaml`) have been copied from the original `{epiparameter}` implementation.

## Bug fixes

* None

## Deprecated and defunct

* None

## Acknowledgements

```{r ctbs, results='asis', echo=FALSE, message = FALSE}
releases <- gh::gh("GET /repos/{owner}/{repo}/releases",
owner = "epiverse-trace",
repo = "epiparameterDB") |>
purrr::discard(~ grepl("\\d+\\.\\d+\\.[1-9]\\d*$", .x$tag_name))
if (length(releases) >= 2) {
previous_release <- releases[[2]][["tag_name"]]
} else {
previous_release <- NULL
}
ctbs <- usethis::use_tidy_thanks(
"epiverse-trace/epiparameterDB",
from = previous_release,
to = "v0.1.0")
ctbs <- ctbs[grep("github-actions\\[bot\\]", ctbs, invert = TRUE)]
cat(glue::glue("[&#x0040;{ctbs}](https://github.com/{ctbs})"))
```

0 comments on commit d1e064d

Please sign in to comment.