-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #382 from poissonconsulting/dev
Version 2.0.0 ready for submission to CRAN
- Loading branch information
Showing
191 changed files
with
2,524 additions
and
1,547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ | |
^LICENSE\.md$ | ||
^_pkgdown\.yml$ | ||
^README\.Rmd$ | ||
^CONTRIBUTING\.Rmd$ | ||
|
||
^paper$ | ||
^vignettestatic$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,51 @@ | ||
How to contribute | ||
----------------- | ||
--- | ||
title: "Contributing" | ||
author: Angeline Tillmanns | ||
date: October 1, 2024 | ||
--- | ||
|
||
Government employees, public and members of the private sector are | ||
encouraged to contribute to the repository by **forking and submitting a | ||
pull request**. | ||
## How to contribute | ||
|
||
(If you are new to GitHub, you might start with a [basic | ||
tutorial](https://help.github.com/articles/set-up-git) and check out a | ||
more detailed guide to [pull | ||
requests](https://help.github.com/articles/using-pull-requests/).) | ||
Government employees, public and members of the private sector are encouraged to contribute to the repository by **forking and submitting a pull request**. | ||
|
||
Pull requests will be evaluated by the repository guardians on a | ||
schedule and if deemed beneficial will be committed to the master. | ||
(If you are new to GitHub, you might start with a [basic tutorial](https://help.github.com/articles/set-up-git) and check out a more detailed guide to [pull requests](https://help.github.com/articles/using-pull-requests/).) | ||
|
||
All contributors retain the original copyright to their stuff, but by | ||
contributing to this project, you grant a world-wide, royalty-free, | ||
perpetual, irrevocable, non-exclusive, transferable license to all users | ||
**under the terms of the license under which this project is | ||
distributed.** | ||
Pull requests will be evaluated by the repository guardians on a schedule and if deemed beneficial will be committed to the master. | ||
|
||
**To track copyright, please use the following:** | ||
All contributors retain the original copyright to their stuff, but by contributing to this project, you grant a world-wide, royalty-free, perpetual, irrevocable, non-exclusive, transferable license to all users **under the terms of the license under which this project is distributed.** | ||
|
||
**New code file:** At the top of the file, please ensure copyright is | ||
attributed to collaborator and assign the Apache 2.0 license | ||
**To track copyright, please use the following:** | ||
|
||
**Major addition to code file:** “Copyright Province of British | ||
Columbia” and Apache 2.0 remains as a header and either the second | ||
collaborator is added if there are changes throughout the code or | ||
copyright is listed for specific lines of code. So it could read: | ||
**New code file:** At the top of the file, please ensure copyright and year is attributed to collaborator and assign the full Apache 2.0 license | ||
|
||
Copyright Province of British Columbia and Copyright Collaborator Apache | ||
2.0 License | ||
**Major addition to code file:** 'Copyright 2015-2023 Province of British Columbia' and full Apache 2.0 remains as a header and either the second collaborator is added if there are changes throughout the code or copyright is added for specific function(s). So it could read: | ||
|
||
Or | ||
```r | ||
# Copyright 2015-2023 Province of British Columbia | ||
# Copyright 2024 Collaborator | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
``` | ||
|
||
Copyright Province of British Columbia and Lines 200-500 Copyright | ||
Collaborator Apache 2.0 License | ||
or | ||
|
||
**Minor changes:** If there are small changes to the code throughout the | ||
file then it may be easiest to keep these files as Copyright Province of | ||
British Columbia. However, the contribution will be tracked through | ||
GitHub. | ||
```r | ||
# Copyright 2024 Collaborator | ||
# Apache 2.0 License | ||
new_function <- function() { | ||
# code | ||
} | ||
``` | ||
|
||
**Minor changes:** If there are small changes to the code throughout the file then it may be easiest to leave the copyright declaration unaltered. | ||
However, the contribution will be tracked through GitHub. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
on: | ||
push: | ||
branches: [main, dev] | ||
branches: [main] | ||
pull_request: | ||
branches: [main, dev] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ | |
/paper/paper.pdf | ||
/scripts/boron_samples1 | ||
/scripts/checks.md | ||
inst/doc |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: ssdtools | ||
Title: Species Sensitivity Distributions | ||
Version: 1.0.6.9018 | ||
Version: 2.0.0 | ||
Authors@R: c( | ||
person("Joe", "Thorley", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-7683-4592")), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.