Skip to content

Commit

Permalink
Merge pull request #59 from Wenzel/release_v0.6
Browse files Browse the repository at this point in the history
setup: release v0.6
  • Loading branch information
Wenzel authored Feb 7, 2023
2 parents 8f2c09f + 18eb9f7 commit 9438d73
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Get the version
id: get_version
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

# only create release if tag start by 'v*'
- name: Create a Release
Expand All @@ -45,4 +45,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')

- id: step_upload_url
run: echo "::set-output name=upload_url::${{ steps.create_release.outputs.upload_url }}"
run: echo "upload_url=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_OUTPUT
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# kAFL-Fuzzer
<h1 align="center">
<br>kAFL-Fuzzer</br>
</h1>

<h3 align="center">
HW-assisted Feedback Fuzzer for x86 VMs
</h3>

<p align="center">
<a href="https://github.com/IntelLabs/kafl.fuzzer/actions/workflows/ci.yml">
<img src="https://github.com/IntelLabs/kafl.fuzzer/actions/workflows/ci.yml/badge.svg" alt="CI">
</a>
<a href="https://github.com/IntelLabs/kafl.fuzzer/releases">
<img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/IntelLabs/kafl.fuzzer">
</a>
</p>


`Note: All components are provided for research and validation purposes only. Use at your own risk.`

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
requirements = f.read().splitlines()

setup(name='kafl_fuzzer',
version='0.5',
version='0.6',
description='kAFL/Nyx Kernel Fuzzer',
maintainer='Steffen Schulz',
maintainer_email='[email protected]',
Expand Down

0 comments on commit 9438d73

Please sign in to comment.