Skip to content

Commit

Permalink
Minor edits (#38)
Browse files Browse the repository at this point in the history
* doc : CONTRIBUTING.md updated

* doc : SECURITY.md updated

* doc : codecov badge bug fixed

* doc : CHANGELOG.md updated
  • Loading branch information
sepandhaghighi authored Jan 6, 2025
1 parent 1bd5178 commit 2e85b4f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Please consider the following :
2. Create your feature branch (under `dev` branch)
3. Add your functions/methods to proper files
4. Add standard `docstring` to your functions/methods
5. Add tests for your functions/methods (`doctest` testcases in `test` folder)
5. Add tests for your functions/methods (`unittest` testcases in `tests` folder)
6. Pass all CI tests
7. Update `CHANGELOG.md`
- Describe changes under `[Unreleased]` section
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `single_runs` property
### Changed
- Test system modified
- `SECURITY.md` updated
- `CONTRIBUTING.md` updated
- `README.md` updated
### Removed
- `property` deleter & setter
## [0.1] - 2024-11-27
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="https://github.com/openscilab/opr/raw/main/otherfiles/logo.png" width="250">
<h1>OPR: Optimized Primer</h1>
<br/>
<a href="https://codecov.io/gh/openscilab/opr"><img src="https://codecov.io/gh/openscilab/opr/branch/main/graph/badge.svg" alt="Codecov"></a>
<a href="https://codecov.io/gh/openscilab/opr"><img src="https://codecov.io/gh/openscilab/opr/branch/dev/graph/badge.svg" alt="Codecov"></a>
<a href="https://badge.fury.io/py/opr"><img src="https://badge.fury.io/py/opr.svg" alt="PyPI version"></a>
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3"></a>
<a href="https://discord.gg/8mBspwXqcA"><img src="https://img.shields.io/discord/1064533716615049236.svg" alt="Discord Channel"></a>
Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
| Version | Supported |
| ------------- | ------------------ |
| 0.1 | :white_check_mark: |
| < 0.1 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
PARAMS_ITEMS = ['OPR_VERSION = "{0}"']
META_ITEMS = ['% set version = "{0}" %']
ISSUE_TEMPLATE_ITEMS = ["- OPR {0}"]
SECURITY_ITEMS = ["| {0} | :white_check_mark: |"]
SECURITY_ITEMS = ["| {0} | :white_check_mark: |", "| < {0} | :x: |"]

FILES = {
os.path.join("otherfiles", "meta.yaml"): META_ITEMS,
Expand Down

0 comments on commit 2e85b4f

Please sign in to comment.