diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e77a8f32ee5..574c5ee5548 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.2 files = setup.py src/scancode_config.py commit = False tag = False diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f8fc4c1920f..7114dada18e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Changelog ========= -v3.0.1 (2019-02-15) +v3.0.2 (2019-02-15) ------------------- Minor bug fixes: @@ -9,6 +9,7 @@ Minor bug fixes: - A tracing flag was turned on in the summary module by mistake. Reported by @tdruez #1374 - Correct a Maven parsing error. Reported and fixed by @linexb #1373 - Set proper links in the README. Reported and fixed by @sschubert #1371 + - No changes from v3.0.1 v3.0.0 (2019-02-14) diff --git a/setup.py b/setup.py index bad23ef4ea4..028619dc2c0 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import find_packages from setuptools import setup -version = '3.0.1' +version = '3.0.2' #### Small hack to force using a plain version number if the option #### --plain-version is passed to setup.py diff --git a/src/scancode_config.py b/src/scancode_config.py index b63dc5ca895..e1e8a1608dc 100644 --- a/src/scancode_config.py +++ b/src/scancode_config.py @@ -97,7 +97,7 @@ def _create_dir(location): __version__ = get_distribution('scancode-toolkit').version except DistributionNotFound: # package is not installed ?? - __version__ = '3.0.1' + __version__ = '3.0.2' system_temp_dir = tempfile.gettempdir() scancode_src_dir = dirname(__file__)