Skip to content

Commit

Permalink
Merge pull request #98 from prebid/release/0.2.6
Browse files Browse the repository at this point in the history
Release 0.2.6
  • Loading branch information
dshore committed Feb 8, 2022
2 parents 3ec7bbd + 921e891 commit 3799c68
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 3.6, 3.7, 3.8 and 3.9, and for PyPy.
3. The pull request should work for Python 3.7, 3.8, 3.9 and 3.10, and for PyPy.

Tips
----
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
=======

0.2.6 (2022-02-08)
-------------------
* Require Python >=3.7 (3.6 EOL DEC 23 2021)

0.2.5 (2022-02-08)
-------------------
* Update Google Ad Manager to v202105 (#93)
Expand Down
2 changes: 1 addition & 1 deletion line_item_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """the prebid contributors"""
__email__ = '[email protected]'
__version__ = '0.2.5'
__version__ = '0.2.6'

# For an official release, use dev_version = ''
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.5'
# version: '0.2.6'
###############################################################################
# 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.5
current_version = 0.2.6
commit = True
tag = True

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ def get_txt(filename):
setup(
author="the prebid contributors",
author_email='[email protected]',
python_requires='>=3.6',
python_requires='>=3.7',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description="Create and manage line items.",
entry_points={
Expand All @@ -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.5',
version='0.2.6',
zip_safe=False,
)

0 comments on commit 3799c68

Please sign in to comment.