Skip to content

Commit

Permalink
Merge pull request #132 from prebid/release/0.2.10
Browse files Browse the repository at this point in the history
Release 0.2.10
  • Loading branch information
dshore authored Aug 30, 2023
2 parents 59c5bb7 + 63820da commit f8ca0b8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

0.2.10 (2023-08-30)
-------------------
* BUG FIX: Error for unsupported GAM API version is not handled properly (#116)
* BUG FIX: bidder-data.csv has spaces, causing line-item-manager to not find line items (#128)
* Update Google Ad Manager to v202308 (#129)

0.2.9 (2022-08-23)
-------------------
* Update Google Ad Manager to v202208 (#96)
Expand Down
4 changes: 2 additions & 2 deletions line_item_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

__author__ = """the prebid contributors"""
__email__ = 'info@prebid.org'
__version__ = '0.2.9'
__version__ = '0.2.10'

# For an official release, use dev_version = ''
dev_version = '3'
dev_version = ''

version = __version__
if dev_version:
Expand Down
2 changes: 1 addition & 1 deletion line_item_manager/conf.d/line_item_manager.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# line_item_manager configuration
# version: '0.2.9'
# version: '0.2.10'
###############################################################################
# Templating uses jinja2 rendering (see https://palletsprojects.com/p/jinja/)
# The following key word types are supported:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.9
current_version = 0.2.10
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.9',
version='0.2.10',
zip_safe=False,
)

0 comments on commit f8ca0b8

Please sign in to comment.