Skip to content

Commit

Permalink
SECURITY.md (#35)
Browse files Browse the repository at this point in the history
* doc : SECURITY.md added

* fix : version_check.py updated

* doc : RELEASE.md updated

* doc : minor edit in AUTHORS.md titles

* doc : minor edit in README.md titles

* doc : CHANGELOG.md updated
  • Loading branch information
sepandhaghighi authored Aug 4, 2024
1 parent 8b904f4 commit aaa38a4
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 deletions.
4 changes: 2 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Authors #
# Core Developers

----------
- AmirHosein Rostami - Open Science Laboratory ([Github](https://github.com/AHReccese)) **
- Sepand Haghighi - Open Science Laboratory ([Github](https://github.com/sepandhaghighi))

** **Maintainer**

# Other Contributors #
# Other Contributors
----------
- Amir Boreshnavard ([Telegram](https://t.me/ABoreshnavard))
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `dmeta/errors.py`
- `pptx` and `xlsx` support
- `get_microsoft_format` function in `util.py`
- `SECURITY.md`
### Changed
- `run_dmeta` in `functions.py`
- `read_json` in `util.py`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ You can also join our discord server
</a>


## Show Your Support
## Show your support


### Star this repo
Expand Down
14 changes: 14 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Security policy

## Supported versions

| Version | Supported |
| ------------- | ------------------ |
| 0.1 | :white_check_mark: |
| < 0.1 | :x: |

## Reporting a vulnerability

Please report security vulnerabilities by email to [[email protected]](mailto:[email protected] "[email protected]").

If the security vulnerability is accepted, a dedicated bugfix release will be issued as soon as possible (depending on the complexity of the fix).
9 changes: 5 additions & 4 deletions otherfiles/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# DMeta Release Instructions

#### Last Update: 2023-12-20
**Last Update: 2024-08-04**

1. Create the `release` branch under `dev`
2. Update all version tags
1. `setup.py`
2. `README.md`
3. `otherfiles/version_check.py`
4. `otherfiles/meta.yaml`
5. `dmeta/params.py`
3. `SECURITY.md`
4. `otherfiles/version_check.py`
5. `otherfiles/meta.yaml`
6. `dmeta/params.py`
3. Update `CHANGELOG.md`
1. Add a new header under `Unreleased` section (Example: `## [0.1] - 2022-08-17`)
2. Add a new compare link to the end of the file (Example: `[0.2]: https://github.com/openscilab/dmeta/compare/v0.1...v0.2`)
Expand Down
2 changes: 2 additions & 0 deletions otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@
"[{0}]:"]
PARAMS_ITEMS = ['DMETA_VERSION = "{0}"']
META_ITEMS = ['% set version = "{0}" %']
SECURITY_ITEMS = ["| {0} | :white_check_mark: |", "| < {0} | :x: |"]

FILES = {
os.path.join("otherfiles", "meta.yaml"): META_ITEMS,
"setup.py": SETUP_ITEMS,
"README.md": README_ITEMS,
"CHANGELOG.md": CHANGELOG_ITEMS,
"SECURITY.md": SECURITY_ITEMS,
os.path.join("dmeta", "params.py"): PARAMS_ITEMS,
}

Expand Down

0 comments on commit aaa38a4

Please sign in to comment.