File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed
Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 2.1 .0
2+ current_version = 2.2 .0
33files = setup.py src/scancode/__init__.py
44commit = False
55tag = False
Original file line number Diff line number Diff line change 11Changelog
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
8272.1.0 (2017-09-22)
Original file line number Diff line number Diff line change 1717from 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
Original file line number Diff line number Diff line change 5050 __version__ = get_distribution ('scancode-toolkit' ).version
5151except DistributionNotFound :
5252 # package is not installed ??
53- __version__ = '2.1 .0'
53+ __version__ = '2.2 .0'
You can’t perform that action at this time.
0 commit comments