diff --git a/SECURITY.md b/SECURITY.md index a7a8125..ad8b233 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,19 +2,27 @@ ## Supported Versions -Use this section to tell people about which versions of your project are -currently being supported with security updates. +| Version | Supported | +| ------- | --------- | +| > 0.8.1 | ✅ | +| 0.7.x | ❌ | +| 0.6.x | ❌ | +| 0.5.x | ❌ | +| 0.4.x | ❌ | +| < 0.4.x | ❌ | -| Version | Supported | -| -------- | ------------------ | -| 0.4.x | ✅ | -| < 0.4.x | ✅ | +## Reporting a Vulnerability +- [x] pysha3 has deprecated, update to 0.8.1 -## Reporting a Vulnerability +## Important Note Regarding Deprecation + +**[Merkly]** has recently undergone a significant update. We have deprecated the use of the `pysha3` package and replaced it with the more secure and actively maintained `pycryptodome` package, starting from version 0.8.1 + +This update is essential for maintaining the security and reliability of our library. We strongly encourage all users to upgrade to at least version 0.8.1 or later. + +If you are using an older version of the library that depends on `pysha3`, it is no longer supported and may have security vulnerabilities. We recommend updating to the latest version immediately. -Use this section to tell people how to report a vulnerability. +We take security seriously, and this update is aimed at providing a safer and more reliable library for our users. -Tell them where to go, how often they can expect to get an update on a -reported vulnerability, what to expect if the vulnerability is accepted or -declined, etc. +Thank you for your understanding and cooperation. diff --git a/pyproject.toml b/pyproject.toml index b7e9649..8ad342b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "merkly" -version = "0.8.0" +version = "0.8.1" description = "🌳 The simple and easy implementation of Merkle Tree" authors = ["Lucas Oliveira "] repository = "https://github.com/olivmath/merkly.git"