Skip to content

Commit

Permalink
Merge pull request #357 from weecology/devdocs
Browse files Browse the repository at this point in the history
Devdocs
  • Loading branch information
juniperlsimonis authored May 18, 2023
2 parents ddb0638 + 8ad68d5 commit b08ce9d
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Please include a summary of the change and which issue is fixed. Please also inc

Fixes # (issue)

## Type of change

Please delete options that are not relevant.
## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Not backwards compatible new feature (breaking change which adds functionality)
- [ ] New model
- [ ] New dataset
- [ ] Documentation edit


## How Has This Been Tested?
Expand All @@ -37,6 +37,7 @@ We conduct testing cross-platform. Please indicate if any platforms were added t
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] I have checked my code and corrected any misspellings


## Review

Please tag at least one code reviewer (@juniperlsimonis) in your PR.
11 changes: 6 additions & 5 deletions .github/workflows/r-cmd-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
fail-fast: false
matrix:
config:
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release', rtools: '43'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release', rtools: ''}
- {os: ubuntu-latest, r: 'release', rtools: ''}
- {os: ubuntu-latest, r: 'oldrel-1', rtools: ''}
- {os: macOS-latest, r: 'release', rtools: ''}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -53,6 +53,7 @@ jobs:
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
rtools-version: ${{ matrix.config.rtools }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

Expand Down
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: portalcasting
Title: Model and Forecast Portal Rodent Dynamics
Version: 0.57.0
Version: 0.58.0
Authors@R: c(
person(c("Juniper", "L."), "Simonis",
email = "[email protected]", role = c("aut", "cre"),
Expand Down Expand Up @@ -35,6 +35,7 @@ Imports:
bslib,
coda,
english,
git2r,
htmltools,
httr,
jsonlite,
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ importFrom(forecast,auto.arima)
importFrom(forecast,ets)
importFrom(forecast,forecast)
importFrom(forecast,na.interp)
importFrom(git2r,last_commit)
importFrom(grDevices,grey)
importFrom(grDevices,rgb)
importFrom(graphics,abline)
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Version numbers follow [Semantic Versioning](https://semver.org/).

# [portalcasting 0.58.0](https://github.com/weecology/portalcasting/releases/tag/v0.58.0)
*5-18-2023*

## Editing documentation
* Auto templates for issues and prs

## Inclduing git2r in the package
* Was removed accidentally from dockerfile causing breaks in main repo, seeing if it works to be in the package itself

# [portalcasting 0.57.0](https://github.com/weecology/portalcasting/releases/tag/v0.57.0)
*5-12-2023*

Expand Down
1 change: 1 addition & 0 deletions R/portalcasting.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#' @importFrom coda as.mcmc HPDinterval
#' @importFrom english english
#' @importFrom forecast Arima auto.arima ets forecast na.interp
#' @importFrom git2r last_commit
#' @importFrom graphics abline axis mtext par plot points polygon rect text
#' @importFrom grDevices grey rgb
#' @importFrom htmltools a br div h2 h3 h4 HTML includeHTML includeMarkdown p tags
Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ RUN apt-get update \
&& apt-get install -y \
jags


# Install portalcasting from github event that triggered the specific workflow

ARG event_sha="HEAD"
Expand Down

0 comments on commit b08ce9d

Please sign in to comment.