Skip to content

Commit 93a9ac1

Browse files
committed
Added changelog support
1 parent c4bedd5 commit 93a9ac1

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010
- Upcoming changes...
1111

12+
## [0.5.6] - 2021-07-12
13+
### Added
14+
- Added changelog
15+
1216
## [0.5.5] - 2021-07-09
1317
### Added
1418
- Added input SBOM JSON validation
@@ -24,3 +28,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2428

2529
[0.5.4]: https://github.com/scanoss/scanoss.py/compare/v0.5.2...v0.5.4
2630
[0.5.5]: https://github.com/scanoss/scanoss.py/compare/v0.5.4...v0.5.5
31+
[0.5.6]: https://github.com/scanoss/scanoss.py/compare/v0.5.5...v0.5.6

PACKAGE.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,7 @@ if __name__ == "__main__":
8888
Python 3.6 or higher.
8989

9090
## Source code
91-
The source for this package can be found [here](https://github.com/scanoss/scanoss.py).
91+
The source for this package can be found [here](https://github.com/scanoss/scanoss.py).
92+
93+
## Changelog
94+
Details of each release can be found [here](https://github.com/scanoss/scanoss.py/blob/main/CHANGELOG.md).

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,8 @@ pip3 install scanoss
7979
## Bugs/Features
8080
To request features or alert about bugs, please do so [here](https://github.com/scanoss/scanoss.py/issues).
8181

82+
## Changelog
83+
Details of major changes to the library can be found in [CHANGELOG.md](CHANGELOG.md).
84+
8285
## Background
8386
Details about the Winnowing algorithm used for scanning can be found [here](WINNOWING.md).

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import os
33
from setuptools import setup, find_packages
44

5+
56
def read(rel_path):
67
here = os.path.abspath(os.path.dirname(__file__))
78
with codecs.open(os.path.join(here, rel_path), 'r') as fp:

src/scanoss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
"""
1919

20-
__version__ = '0.5.5'
20+
__version__ = '0.5.6'

0 commit comments

Comments
 (0)