Skip to content

Commit

Permalink
bump v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinDavid committed Nov 25, 2022
1 parent ea16d11 commit b8a9e66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion qsynthesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import logging

__version__ = "0.1.1"
__version__ = "0.1.2"

# Simple object used to retrieve the plugin in IDA
qsynthesis_plugin = None
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@
server_deps = ['fastapi', 'uvicorn']
assembly_deps = ["arybo", "llvmlite"]

with open("README.md") as f:
README = f.read()

setup(
name="qsynthesis",
version="0.1.1",
version="0.1.2",
description="Python API to synthesize Triton AST's",
long_description_content_type='text/markdown',
long_description="file: README.md",
long_description=README,
packages=find_packages(),
url="https://github.com/quarkslab/qsynthesis",
project_urls={
Expand Down

0 comments on commit b8a9e66

Please sign in to comment.