Skip to content

Commit ad6a067

Browse files
committed
Bump version to 3.0.1
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent ca54088 commit ad6a067

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 3.0.1
33
files = setup.py src/scancode_config.py
44
commit = False
55
tag = False

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
v3.0.1 (2019-02-15)
5+
-------------------
6+
7+
Minor bug fix version: there was a tracing flag turned on in the summary module
8+
by mistake. Reported by @tdruez
9+
10+
411
v3.0.0 (2019-02-14)
512
-------------------
613

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from setuptools import find_packages
1717
from setuptools import setup
1818

19-
version = '3.0.0'
19+
version = '3.0.'
2020

2121
#### Small hack to force using a plain version number if the option
2222
#### --plain-version is passed to setup.py

src/scancode_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def _create_dir(location):
9797
__version__ = get_distribution('scancode-toolkit').version
9898
except DistributionNotFound:
9999
# package is not installed ??
100-
__version__ = '3.0.0'
100+
__version__ = '3.0.1'
101101

102102
system_temp_dir = tempfile.gettempdir()
103103
scancode_src_dir = dirname(__file__)

0 commit comments

Comments
 (0)