Skip to content
This repository has been archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/0.1.11' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
3c7 committed Apr 29, 2021
2 parents dcfef15 + e3d65bc commit e85e48d
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/pyinstaller/pyinstaller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import io
import subprocess

with io.open("yaramanager/__init__.py", "a") as fh:
commit = subprocess.check_output(["git", "describe", "--always", "--tags", "--long"]).decode("utf-8").strip().split("-")[-1]
commit = subprocess.check_output(["git", "describe", "--always", "--tags", "--long"]).decode("utf-8").strip().split("-")[-1][1:]
fh.write(f"commit = \"{commit}\"\n")

a = Analysis(
Expand Down
112 changes: 57 additions & 55 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yaramanager"
version = "0.1.10"
version = "0.1.11"
description = "CLI tool to manage your yara rules"
authors = ["3c7 <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -35,16 +35,16 @@ include = [
python = "^3.8"
SQLAlchemy = "^1.4.2"
plyara = "^2.1.1"
yarabuilder = "^0.0.5"
yarabuilder = "^0.0.6"
rich = "^10.0.0"
alembic = "^1.5.8"
click = "^7.1.2"
toml = "^0.10.2"
requests = "^2.25.1"
yara-python = "^4.0.5"
yara-python = "^4.1.0"

[tool.poetry.dev-dependencies]
pyinstaller = "^4.2"
pyinstaller = "^4.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion yaramanager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "0.1.10"
version = "0.1.11"
alembic_version = "709085f65102"

0 comments on commit e85e48d

Please sign in to comment.