diff --git a/HISTORY.rst b/HISTORY.rst index 15b7280..78f06c3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ History ======= +0.2.12 (2023-10-09) +------------------- +* Example script: Activate targeting values by network code, key Id and names (#149) + 0.2.11 (2023-09-29) ------------------- * Expanded currency list to include GAM currencies diff --git a/line_item_manager/__init__.py b/line_item_manager/__init__.py index 97951ed..694e14d 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.11' +__version__ = '0.2.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 d652409..5caf5cb 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.11' +# version: '0.2.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 92086d2..a459b05 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.11 +current_version = 0.2.12 commit = True tag = True diff --git a/setup.py b/setup.py index 4a809cc..56cc472 100644 --- a/setup.py +++ b/setup.py @@ -80,6 +80,6 @@ def get_txt(filename): setup_requires=setup_requirements, test_suite='tests', url='https://github.com/prebid/line-item-manager', - version='0.2.11', + version='0.2.12', zip_safe=False, )