Skip to content

Commit d47fe79

Browse files
committed
v0.4.0
1 parent 7d4f9c9 commit d47fe79

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
11
Changelog
22
=========
33

4-
Upcoming
5-
--------
4+
v0.4.0
5+
------
66
Features
77
^^^^^^^^
88
- Fuzzing CLI -- Use main_helper() to use boofuzz's generic fuzzing CLI with your script.
99
- Combinatorial fuzzing -- now fuzzes multiple mutations at once by default.
10-
- Added `Simple` primitive that uses only the specified values for fuzzing.
11-
- Fixed two memory leaks in the fuzz logger.
1210
- Test cases can now be specified and re-run by name.
13-
- Implemented visual request-graph rendering functions for Session
11+
- Implemented visual request-graph rendering functions for Session.
1412
- Added to web UIL: runtime, exec speed, current test case name.
1513
- Added simple custom checksum and example usage.
16-
- Add Float primitive
17-
- Add s_float to push Float primitives to the current block
18-
- Add an example for s_float/Float usage
19-
- Add option to encode Floats as IEEE 754 floating point numbers
20-
- Add option to set endianness of IEEE 754 floating point numbers
14+
- Added `Simple` primitive that uses only the specified values for fuzzing.
15+
- Added `Float` primitive with support for IEEE 754 encoding.
16+
- Added an example for s_float/Float usage.
2117

2218
Fixes
2319
^^^^^
24-
- Clarified Checksum() data for custom checksum function.
25-
- String and RandomData primitives now use a local and independent instance of random
26-
- The minimum supported Python version is now 3.6
20+
- Clarified documentation of custom checksum function for `Checksum` primitive.
21+
- String and RandomData primitives now use a local and independent instance of `random`.
22+
- The minimum supported Python version is now 3.6.
23+
- Fixed two memory leaks in the fuzz logger.
2724

2825
v0.3.0
2926
------

boofuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
"Word",
190190
]
191191

192-
__version__ = "0.3.0"
192+
__version__ = "0.4.0"
193193

194194

195195
# REQUEST MANAGEMENT

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 = u"0.3.0"
58+
version = u"0.4.0"
5959
# The full version, including alpha/beta/rc tags.
60-
release = u"0.3.0"
60+
release = u"0.4.0"
6161

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

0 commit comments

Comments
 (0)