Skip to content

Commit

Permalink
patch: move byron to src directory
Browse files Browse the repository at this point in the history
  • Loading branch information
squillero committed Aug 24, 2024
1 parent 909cf52 commit e350b44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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
Expand All @@ -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}"',
]

0 comments on commit e350b44

Please sign in to comment.