Skip to content

Commit

Permalink
Merge pull request #26 from fbenke-pik/master
Browse files Browse the repository at this point in the history
when included, parse core before other modules
  • Loading branch information
fbenke-pik authored Nov 30, 2023
2 parents ade3edf + e9781ed commit 8cf529f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .buildlibrary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ValidationKey: '2795980'
ValidationKey: '2815670'
AutocreateReadme: yes
AcceptedWarnings:
- 'Warning: package ''.*'' was built under R version'
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cff-version: 1.2.0
message: If you use this software, please cite it using the metadata from this file.
type: software
title: 'goxygen: In-Code Documentation for ''GAMS'''
version: 1.4.2
version: 1.4.3
date-released: '2023-11-29'
abstract: A collection of tools which extract a model documentation from 'GAMS' code
and comments. In order to use the package you need to install 'pandoc' and 'pandoc-citeproc'
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: goxygen
Type: Package
Title: In-Code Documentation for 'GAMS'
Version: 1.4.2
Version: 1.4.3
Date: 2023-11-29
Authors@R: c(person("Jan Philipp", "Dietrich", email = "[email protected]", role = c("aut","cre")),
person("Kristine", "Karstens", email = "[email protected]", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion R/createListModularCode.R
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ createListModularCode <- function(cc, interfaces, path = ".", citation = NULL, u

# take only all modules into account or also core
if (includeCore) {
mLoop <- sort(names(out))
mLoop <- c("core", setdiff(sort(names(out)), "core"))
} else {
mLoop <- setdiff(sort(names(out)), "core")
}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# In-Code Documentation for 'GAMS'

R package **goxygen**, version **1.4.2**
R package **goxygen**, version **1.4.3**

[![CRAN status](https://www.r-pkg.org/badges/version/goxygen)](https://cran.r-project.org/package=goxygen) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1411404.svg)](https://doi.org/10.5281/zenodo.1411404) [![R build status](https://github.com/pik-piam/goxygen/workflows/check/badge.svg)](https://github.com/pik-piam/goxygen/actions) [![codecov](https://codecov.io/gh/pik-piam/goxygen/branch/master/graph/badge.svg)](https://app.codecov.io/gh/pik-piam/goxygen) [![r-universe](https://pik-piam.r-universe.dev/badges/goxygen)](https://pik-piam.r-universe.dev/builds)

Expand Down Expand Up @@ -48,7 +48,7 @@ In case of questions / problems please contact Jan Philipp Dietrich <dietrich@pi

To cite package **goxygen** in publications use:

Dietrich J, Karstens K, Klein D, Baumstark L, Benke F (2023). _goxygen: In-Code Documentation for 'GAMS'_. doi:10.5281/zenodo.1411404 <https://doi.org/10.5281/zenodo.1411404>, R package version 1.4.2, <https://github.com/pik-piam/goxygen>.
Dietrich J, Karstens K, Klein D, Baumstark L, Benke F (2023). _goxygen: In-Code Documentation for 'GAMS'_. doi:10.5281/zenodo.1411404 <https://doi.org/10.5281/zenodo.1411404>, R package version 1.4.3, <https://github.com/pik-piam/goxygen>.

A BibTeX entry for LaTeX users is

Expand All @@ -57,7 +57,7 @@ A BibTeX entry for LaTeX users is
title = {goxygen: In-Code Documentation for 'GAMS'},
author = {Jan Philipp Dietrich and Kristine Karstens and David Klein and Lavinia Baumstark and Falk Benke},
year = {2023},
note = {R package version 1.4.2},
note = {R package version 1.4.3},
doi = {10.5281/zenodo.1411404},
url = {https://github.com/pik-piam/goxygen},
}
Expand Down

0 comments on commit 8cf529f

Please sign in to comment.