• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D01-Oct-2021424 1912

changelog.pyH A D01-Oct-20212.3 KiB10172

README.md

1# Changelog
2
3Script designed to create changelog out of `.csv` SRT git log. The output `changelog.md` is generated in the root folder.
4
5In order to generate git log file since the previous release (e.g., v1.4.0), use the following command:
6
7```
8git log --pretty=format:"%h|%s|%an|%ae" v1.4.0...HEAD^ > commits.csv
9```
10
11## Requirements
12
13* python 3.6+
14
15To install python libraries use:
16```
17pip install -r requirements.txt
18```
19