Skip to content

Commit d3f314d

Browse files
authored
Prepare for release v33.6.3 (#1348)
Signed-off-by: Tushar Goel <[email protected]>
1 parent fca8815 commit d3f314d

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ Release notes
22
=============
33

44

5+
Version v33.6.3
6+
----------------
7+
8+
- We updated RTD build configuration.
9+
- We added importer for OSS-Fuzz.
10+
- We removed vulnerabilities with empty aliases.
11+
- We fixed search encoding issue https://github.com/nexB/vulnerablecode/issues/1336.
12+
- We added middleware to ban "bytedance" user-agent.
13+
14+
515
Version v33.6.2
616
----------------
717

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = vulnerablecode
3-
version = 33.6.2
3+
version = 33.6.3
44
license = Apache-2.0 AND CC-BY-SA-4.0
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

vulnerabilities/improvers/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
#
99

1010
from vulnerabilities.improvers import valid_versions
11-
from vulnerabilities.improvers import vulnerability_status
11+
12+
# from vulnerabilities.improvers import vulnerability_status
1213

1314
IMPROVERS_REGISTRY = [
1415
valid_versions.GitHubBasicImprover,
@@ -24,7 +25,7 @@
2425
valid_versions.DebianOvalImprover,
2526
valid_versions.UbuntuOvalImprover,
2627
valid_versions.OSSFuzzImprover,
27-
vulnerability_status.VulnerabilityStatusImprover,
28+
# vulnerability_status.VulnerabilityStatusImprover,
2829
]
2930

3031
IMPROVERS_REGISTRY = {x.qualified_name: x for x in IMPROVERS_REGISTRY}

vulnerablecode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import warnings
1313
from pathlib import Path
1414

15-
__version__ = "33.6.2"
15+
__version__ = "33.6.3"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)