diff --git a/docs/index.md b/docs/index.md index 34b65a6..e3f4445 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# Byron v0.8a1.dev60 *"Don Juan"* +# Byron v0.8a1.dev61 *"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 59a8b77..4091778 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ packages = [ {include = "byron", from = "src"} ] - version = "0.8a1.dev60" + version = "0.8a1.dev61" description = "An evolutionary source-code fuzzer" authors = [ "Cyber Romanticists", @@ -106,7 +106,7 @@ quote-style = "preserve" [tool.bumpver] - current_version = "0.8a1.dev60" + current_version = "0.8a1.dev61" version_pattern = "MAJOR.MINOR[PYTAGNUM].devINC0" commit_message = "style(bumpver): Bump version to {new_version}" commit = true @@ -118,7 +118,7 @@ 'version = "{pep440_version}"$', ] "docs/index.md" = [" v{pep440_version}"] - "byron/src/global_symbols.py" = [ + "src/byron/global_symbols.py" = [ '__date__ = "0D-0M-YYYY"', '__version__ = "{pep440_version}"', ]