Skip to content

Commit 51c3d53

Browse files
committed
Bump version for next release. Prepare CHANGELOG.
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 5dcb568 commit 51c3d53

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
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 = 2.1.0
2+
current_version = 2.2.0
33
files = setup.py src/scancode/__init__.py
44
commit = False
55
tag = False

CHANGELOG.rst

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
Changelog
22
=========
33

4-
(NEXT)
4+
2.2.0 (NEXT)
55
------------------
6+
This is a minor release with several bug fixes, minor new features
7+
and one minor API changes.
8+
9+
API change:
10+
* Licenses data now contains a reference_url attribute instead of a
11+
dejacode_url attribute. This defaults to the public DejaCode URL and
12+
can be configured with the new --license-url-template command line
13+
option.
14+
15+
Other:
16+
* Several new and improved license detection rules have been added.
17+
The logic of detection has been refined to handle some rare corner cases.
18+
Underscore is treated as part of a license word and the handling of
19+
negative and false_positive license rules has been simplified.
20+
* Several issues with dealing with codebase with non-ASCII,
21+
non-UTF-decodable file paths and other filesystem encodings-related
22+
bug have been fixed.
23+
* PHP Composer and RPM packages are now detected with --package
24+
* Several bugs are fixed when parsing NPM packages
625

726

827
2.1.0 (2017-09-22)

setup.py

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

1919

20-
version = '2.1.0'
20+
version = '2.2.0'
2121

2222

2323
#### Small hack to force using a plain version number if the option

src/scancode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
__version__ = get_distribution('scancode-toolkit').version
5151
except DistributionNotFound:
5252
# package is not installed ??
53-
__version__ = '2.1.0'
53+
__version__ = '2.2.0'

0 commit comments

Comments
 (0)