Demitri Swan
Demitri Swan
``` >>> for item in gitchangelog.gitchangelog.versions_data_iter(gitchangelog.gitchangelog.GitRepos('.')): ... pprint(item) ... {'commit': , 'commit_date': '2017-12-07', 'date': '2017-12-07', 'sections': [{'commits': [{'author': u'Demitri Swan', 'authors': [u'Demitri Swan'], 'body': u'', 'commit': , 'subject': u'changelog'}, {'author':...
Tags present here: ``` >>> gitchangelog.gitchangelog.GitRepos('.').tags()[0] ```
``` >>> tags = [tag for tag in repository.tags(contains=revs[-1] if revs else None) if re.match(tag_filter_regexp, tag.identifier)] >>> tags [] ``` This is the list comprehension that is failing to generate...
Removing the condition fixes the bug. Works in my fork: ``` env/bin/gitchangelog Changelog ========= (unreleased) ------------ - Changelog. [Demitri Swan] v0.0.1 (2017-12-07) ------------------- - Wip version bump. [Demitri Swan] -...
With .gitchangelog.rc in place: ``` env/bin/gitchangelog Changelog ========= v0.0.1 (2017-12-07) ------------------- - Initial patch release. [Demitri Swan] - Initial commit. [Demitri Swan] ```
Do you want me to open a PR for this? Any reason why we need that extra code in the list comprehension?
A few issues: * I didn't forget. I didn't see it at all. I personally find it odd that you would have to configure something like this in order to...
I'm interested.
`ansible --version` ansible 2.1.0.0
These tarballs are created by GitHub when a release is made; however, we release from release branches so we can have an isolated environment for each release. If you need...