diff --git a/docs/index.md b/docs/index.md index e3f4445..db5a964 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# Byron v0.8a1.dev61 *"Don Juan"* +# Byron v0.8a1.dev62 *"Don Juan"* Byron is a source code [fuzzer](https://en.wikipedia.org/wiki/Fuzzing) designed to support assembly or higher level languages. It starts by generating a set of random programs, which are then iteratively improved by an [evolutionary algorithm](https://cad-polito-it.github.io/byron/evolution). Internally, it encodes candidate solutions as [typed](https://rcor.me/papers/typed-graph-theory.pdf), [directed](https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)#Directed_graph) [multigraphs](https://en.wikipedia.org/wiki/Multigraph), and can effectively handle complex, realistic structures containing local and global variables, conditional and looping statements, and subroutines. diff --git a/pyproject.toml b/pyproject.toml index 4091778..2c314d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ packages = [ {include = "byron", from = "src"} ] - version = "0.8a1.dev61" + version = "0.8a1.dev62" description = "An evolutionary source-code fuzzer" authors = [ "Cyber Romanticists", @@ -106,7 +106,7 @@ quote-style = "preserve" [tool.bumpver] - current_version = "0.8a1.dev61" + current_version = "0.8a1.dev62" version_pattern = "MAJOR.MINOR[PYTAGNUM].devINC0" commit_message = "style(bumpver): Bump version to {new_version}" commit = true diff --git a/src/byron/global_symbols.py b/src/byron/global_symbols.py index f108b75..763608f 100644 --- a/src/byron/global_symbols.py +++ b/src/byron/global_symbols.py @@ -69,8 +69,8 @@ import sys from collections import defaultdict -__version__ = "0.8a1.dev59" -__date__ = "19-08-2024" +__version__ = "0.8a1.dev62" +__date__ = "24-08-2024" __codename__ = "Don Juan" __author__ = "Giovanni Squillero and Alberto Tonda" __copyright__ = "Copyright (c) 2023-24 Giovanni Squillero and Alberto Tonda"