diff --git a/HISTORY.rst b/HISTORY.rst index d02fc92..8501042 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.2.7 (2022-05-17) +------------------- +* default creative duration to match max duration (that is currently 30000 milliseconds) +* support config duration in creative block + 0.2.6 (2022-02-08) ------------------- * Require Python >=3.7 (3.6 EOL DEC 23 2021) diff --git a/line_item_manager/__init__.py b/line_item_manager/__init__.py index 32391f0..d7c61fd 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.2.6' +__version__ = '0.2.7' # 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 89bcea6..01856a1 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.2.6' +# version: '0.2.7' ############################################################################### # 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 2b99090..d64b11d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.6 +current_version = 0.2.7 commit = True tag = True diff --git a/setup.py b/setup.py index 883adc3..c2af1bf 100644 --- a/setup.py +++ b/setup.py @@ -79,6 +79,6 @@ def get_txt(filename): setup_requires=setup_requirements, test_suite='tests', url='https://github.com/prebid/line-item-manager', - version='0.2.6', + version='0.2.7', zip_safe=False, )