From 8fd69d3e21c7af794c66655b2bb17d2e14add762 Mon Sep 17 00:00:00 2001 From: Giovanni Squillero Date: Wed, 18 Sep 2024 16:03:08 +0200 Subject: [PATCH] style(bumpver): Bump version to 0.8a1.dev66 --- docs/index.md | 2 +- pyproject.toml | 4 ++-- src/byron/global_symbols.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/index.md b/docs/index.md index 87d34cc..35cd534 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# Byron v0.8a1.dev65 *"Don Juan"* +# Byron v0.8a1.dev66 *"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 ab7f3ce..09c94f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ packages = [ {include = "byron", from = "src"} ] - version = "0.8a1.dev65" + version = "0.8a1.dev66" description = "An evolutionary source-code fuzzer" authors = [ "Cyber Romanticists", @@ -106,7 +106,7 @@ quote-style = "preserve" [tool.bumpver] - current_version = "0.8a1.dev65" + current_version = "0.8a1.dev66" 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 3c99b41..5ebaa4c 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.dev65" -__date__ = "13-09-2024" +__version__ = "0.8a1.dev66" +__date__ = "18-09-2024" __codename__ = "Don Juan" __author__ = "Giovanni Squillero and Alberto Tonda" __copyright__ = "Copyright (c) 2023-24 Giovanni Squillero and Alberto Tonda"