Skip to content

Commit

Permalink
Bump version: 0.1.5 → 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jmiguelv committed Sep 29, 2021
1 parent f2a5f5c commit 1f76551
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
History
=======

[0.2.0] - yyyy-mm-dd
[0.1.6] - 2021-09-29
--------------------

Added
Expand Down Expand Up @@ -40,6 +40,7 @@ Fixed
~~~~~
* Fix setup.py URL.


[0.1.3] - 2020-01-22
---

Expand Down
4 changes: 2 additions & 2 deletions data_portal_explorer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"""Top-level package for Data Portal Explorer."""

__author__ = """Kings Digital Lab"""
__email__ = 'jmvieira@gmail.com'
__version__ = '0.2.0'
__email__ = "jmvieira@gmail.com"
__version__ = "0.1.6"
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.2.0
current_version = 0.1.6
commit = True
tag = True

Expand All @@ -8,8 +8,8 @@ search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:data_portal_explorer/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:HISTORY.rst]
search = Unreleased
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"""The setup script."""

from setuptools import setup, find_packages
from setuptools import find_packages, setup

with open("README.rst") as readme_file:
readme = readme_file.read()
Expand Down Expand Up @@ -33,7 +33,9 @@
instances which can be used to study data portals as infrastructures from
the perspective of social/cultural research.""",
entry_points={
"console_scripts": ["data_portal_explorer=data_portal_explorer.cli:cli",],
"console_scripts": [
"data_portal_explorer=data_portal_explorer.cli:cli",
],
},
install_requires=requirements,
license="MIT license",
Expand All @@ -46,6 +48,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/kingsdigitallab/DataPortalExplorer",
version="version='0.2.0'",
version="version='0.1.6'",
zip_safe=False,
)

0 comments on commit 1f76551

Please sign in to comment.