onqtam | e8bdda4 | 2016-06-01 15:12:36 +0300 | [diff] [blame] | 1 | #!/usr/bin/python2.7 |
2 | |||||
3 | import os | ||||
onqtam | e8bdda4 | 2016-06-01 15:12:36 +0300 | [diff] [blame] | 4 | |
5 | # the version of the release | ||||
6 | with open("version.txt") as f: version = f.read() | ||||
7 | |||||
8 | # update changelog | ||||
9 | print("updating changelog") | ||||
10 | os.chdir("../") | ||||
11 | os.system("github_changelog_generator --future-release " + version) | ||||
12 | os.system("git add CHANGELOG.md") | ||||
13 | os.chdir("scripts") |