From 27eda1100f2cfbbce050de1ea59d9b1e1fbcb0d8 Mon Sep 17 00:00:00 2001 From: Doug Shore Date: Tue, 12 Jan 2021 09:45:51 -0500 Subject: [PATCH] Release 0.1.12 --- HISTORY.rst | 9 +++++++++ line_item_manager/__init__.py | 4 ++-- line_item_manager/conf.d/line_item_manager.yml | 2 +- setup.cfg | 6 +++--- setup.py | 2 +- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index dbf4e4a..08397f1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,15 @@ History ======= +0.1.12 (2021-01-12) +------------------- + +* Support for Python 3.9 +* Prebid and PrebidBidder classes added +* Type hints added +* Docstrings added +* Removed unused travis and tox support + 0.1.11 (2020-12-17) ------------------- diff --git a/line_item_manager/__init__.py b/line_item_manager/__init__.py index ad3e7ab..7c1e1dd 100644 --- a/line_item_manager/__init__.py +++ b/line_item_manager/__init__.py @@ -2,10 +2,10 @@ __author__ = """the prebid contributors""" __email__ = 'info@prebid.org' -__version__ = '0.1.11' +__version__ = '0.1.12' # For an official release, use dev_version = '' -dev_version = '1' +dev_version = '' version = __version__ if dev_version: diff --git a/line_item_manager/conf.d/line_item_manager.yml b/line_item_manager/conf.d/line_item_manager.yml index 92a9bcb..a96d9be 100644 --- a/line_item_manager/conf.d/line_item_manager.yml +++ b/line_item_manager/conf.d/line_item_manager.yml @@ -1,5 +1,5 @@ # line_item_manager configuration -# version: '0.1.11' +# version: '0.1.12' ############################################################################### # Templating uses jinja2 rendering (see https://palletsprojects.com/p/jinja/) # The following key word types are supported: diff --git a/setup.cfg b/setup.cfg index c99b083..815a40d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.11 +current_version = 0.1.12 commit = True tag = True @@ -25,5 +25,5 @@ exclude = docs test = pytest [tool:pytest] -markers = - command: cli command str +markers = + command: cli command str diff --git a/setup.py b/setup.py index 79caa9f..1a73bed 100644 --- a/setup.py +++ b/setup.py @@ -78,6 +78,6 @@ def get_txt(filename): setup_requires=setup_requirements, test_suite='tests', url='https://github.com/prebid/line-item-manager', - version='0.1.11', + version='0.1.12', zip_safe=False, )