Skip to content

Commit

Permalink
Merge pull request #13 from prebid/release/0.1.12
Browse files Browse the repository at this point in the history
Release 0.1.12
  • Loading branch information
dshore authored Jan 12, 2021
2 parents ec5d013 + 27eda11 commit 284c66a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
-------------------

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__ = '[email protected]'
__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:
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.1.11'
# version: '0.1.12'
###############################################################################
# Templating uses jinja2 rendering (see https://palletsprojects.com/p/jinja/)
# The following key word types are supported:
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.11
current_version = 0.1.12
commit = True
tag = True

Expand All @@ -25,5 +25,5 @@ exclude = docs
test = pytest

[tool:pytest]
markers =
command: cli command str
markers =
command: cli command str
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 284c66a

Please sign in to comment.