Skip to content

Commit

Permalink
Prepare 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 9, 2020
1 parent 22645d1 commit bb3d618
Show file tree
Hide file tree
Showing 24 changed files with 31 additions and 25 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.4.7
-----
2020-02-09

- Minor fixes.

0.4.6
-----
2020-01-06
Expand Down
2 changes: 1 addition & 1 deletion LICENSE_GPL2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

Matyan - Generate changelog from Git commits.
Copyright (C) 2019 Artur Barseghyan
Copyright (C) 2019-2020 Artur Barseghyan

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion LICENSE_LGPL_2.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

Matyan - Generate changelog from Git commits.
Copyright (C) 2019 Artur Barseghyan
Copyright (C) 2019-2020 Artur Barseghyan

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
except:
readme = ''

version = '0.4.6'
version = '0.4.7'

setup(
name='matyan',
Expand All @@ -33,7 +33,7 @@
author_email='artur.barseghyan@gmail.com',
url='https://github.com/barseghyanartur/matyan',
project_urls={
"Bug Tracker": "https://github.com/barseghyanartur/matyan/",
"Bug Tracker": "https://github.com/barseghyanartur/matyan/issues",
"Documentation": "https://matyan.readthedocs.io/",
"Source Code": "https://github.com/barseghyanartur/matyan/",
"Changelog": "https://matyan.readthedocs.io/en/latest/changelog.html",
Expand Down
4 changes: 2 additions & 2 deletions src/matyan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
)

__title__ = 'matyan'
__version__ = '0.4.6'
__version__ = '0.4.7'
__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'generate_changelog',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/auto_correct.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import AnyStr

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'add_final_dot',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .helpers import project_dir

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'CONFIG',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'PRETTY_FORMAT',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/fetchers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from ..registry import Registry

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'BaseFetcher',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/fetchers/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .base import BaseFetcher

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'BaseFetcher',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/helpers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'project_dir',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .config import CONFIG

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'BRANCH_TYPE_OTHER',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .config import CONFIG

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'LOGGER',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/patterns.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .config import CONFIG

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'REGEX_PATTERN_BRANCH_NAME',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/registry.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Dict, Type

__author__ = 'Artur Barseghyan'
__copyright__ = '2013-2019 Artur Barseghyan'
__copyright__ = '2013-2019-2020 Artur Barseghyan'
__license__ = 'MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'Registry',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/renderers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ..registry import Registry

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'BaseRenderer',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/renderers/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .base import BaseRenderer

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'MarkdownRenderer',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/renderers/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .base import BaseRenderer

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'RestructuredTextRenderer',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
# __all__ = (
# )
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import socket

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'internet_available_only',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/tests/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ..utils import get_repository

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'ChangelogMixin',
Expand Down
2 changes: 1 addition & 1 deletion src/matyan/tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .mixins import ChangelogMixin

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('TestCommands',)

Expand Down
2 changes: 1 addition & 1 deletion src/matyan/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from .mixins import ChangelogMixin

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = ('TestCore',)

Expand Down
2 changes: 1 addition & 1 deletion src/matyan/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
)

__author__ = 'Artur Barseghyan'
__copyright__ = '2019 Artur Barseghyan'
__copyright__ = '2019-2020 Artur Barseghyan'
__license__ = 'GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (
'generate_changelog',
Expand Down

0 comments on commit bb3d618

Please sign in to comment.