Skip to content

Commit

Permalink
Merge branch 'release/0.1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
prawn-cake committed Jun 4, 2017
2 parents c8be163 + dd5dc74 commit d8eb82d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.3
current_version = 0.1.4
tag = False
tag_name = {new_version}
commit = True
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: python
cache: pip
python:
- 3.4
env:
Expand Down
6 changes: 5 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Changelog
=========

0.1.3 (2016-07-10)
0.1.4 (2017-06-04)
--------------------
* [Feature] New [Breaking] message type

0.1.3 (2016-07-10)
------------------
* Remove py27 support, keep only py3, too hassle to maintain it and time to move to be in the new era of python
* [Feature] Added confirmation dialog for 'release' with support of rollback, added --force-yes key to disable it

Expand Down
1 change: 1 addition & 0 deletions md_changelog/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def init_changelog(path):
logger.debug('Init changelog: %s', file_path)
with open(file_path, 'w') as fd:
fd.write(INIT_TEMPLATE)
logger.debug('See `md-changelog -h` for more info')
return True

def init_config(path):
Expand Down
6 changes: 4 additions & 2 deletions md_changelog/tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,13 @@ def __le__(self, other):
message_t = namedtuple('MESSAGE_TYPES', ['message',
'feature',
'bugfix',
'improvement'])
'improvement',
'breaking'])
TYPES = message_t(message='',
feature='Feature',
bugfix='Bugfix',
improvement='Improvement')
improvement='Improvement',
breaking='Breaking')


class Message(Token):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='md-changelog',
version='0.1.3',
version='0.1.4',
packages=['md_changelog'],
url='',
license='MIT',
Expand Down

0 comments on commit d8eb82d

Please sign in to comment.