Skip to content

Commit 8e2aac7

Browse files
authored
v0.4.2 (#692)
1 parent c2facda commit 8e2aac7

File tree

9 files changed

+15
-14
lines changed

9 files changed

+15
-14
lines changed

.github/ISSUE_TEMPLATE/2_bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ body:
4545
label: boofuzz version
4646
description: What version of boofuzz that are you running?
4747
options:
48+
- "0.4.2"
4849
- "0.4.1"
4950
- "0.4.0"
5051
- "0.3.0"

CHANGELOG.rst

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

4-
Upcoming
5-
--------
4+
v0.4.2
5+
------
66
Features
77
^^^^^^^^
8-
- Remove six compatibility module
8+
- Remove six compatibility module.
99
- Remove Python 2 compatibility code.
10-
- Remove specifying object inheritance in classes
11-
- Added Web UI listening on specific IP address
10+
- Remove specifying object inheritance in classes.
11+
- Added Web UI listening on specific IP address.
1212
- Added Python 3.11 compatibility.
1313

1414
Fixes
1515
^^^^^
16-
- Specified encoding on file write rather than assuming default encoding
16+
- Specified encoding on file write rather than assuming default encoding.
1717
- Changed type of `default_value` from string to bytes for `FromFile`.
1818
- `s_update` primitive was out of date.
1919
- The minimum supported Python version is now 3.8.

boofuzz/sessions/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def callback(target, fuzz_data_logger, session, node, edge, *args, **kwargs)
2020
dst (int): Edge destination ID
2121
callback (function): Optional. Callback function to pass received data to between node xmits
2222
23-
.. versionchanged:: 0.5.0
23+
.. versionchanged:: 0.4.2
2424
This class has been moved into the sessions subpackage. The full path is now
2525
boofuzz.sessions.connection.Connection.
2626
"""

boofuzz/sessions/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class Session(pgraph.Graph):
102102
Defaults to ./boofuzz-results/{uniq_timestamp}.db
103103
web_address: Address where's Boofuzz logger exposed. Default 'localhost'
104104
105-
.. versionchanged:: 0.5.0
105+
.. versionchanged:: 0.4.2
106106
This class has been moved into the sessions subpackage. The full path is now boofuzz.sessions.session.Session.
107107
"""
108108

boofuzz/sessions/session_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class SessionInfo:
77
"""
8-
.. versionchanged:: 0.5.0
8+
.. versionchanged:: 0.4.2
99
This class has been moved into the sessions subpackage. The full path is now
1010
boofuzz.sessions.session_info.SessionInfo.
1111
"""

boofuzz/sessions/target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Target:
2525
procmon: Deprecated interface for adding a process monitor.
2626
procmon_options: Deprecated interface for adding a process monitor.
2727
28-
.. versionchanged:: 0.5.0
28+
.. versionchanged:: 0.4.2
2929
This class has been moved into the sessions subpackage. The full path is now boofuzz.sessions.target.Target.
3030
"""
3131

boofuzz/sessions/web_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class WebApp:
1717
web_address (string): Address binded to port for monitoring fuzzing campaign via a web browser.
1818
Default 'localhost'.
1919
20-
.. versionchanged:: 0.5.0
20+
.. versionchanged:: 0.4.2
2121
This class has been moved into the sessions subpackage. The full path is now boofuzz.sessions.web_app.WebApp.
2222
"""
2323

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = "0.4.1"
58+
version = "0.4.2"
5959
# The full version, including alpha/beta/rc tags.
60-
release = "0.4.1"
60+
release = "0.4.2"
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "boofuzz"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "A fork and successor of the Sulley Fuzzing Framework"
55
authors = ["Joshua Pereyda <joshua.t.pereyda@gmail.com>"]
66
license = "GPL-2.0-only"

0 commit comments

Comments
 (0)