From 3e0a23095c199c98c90e448e787fa26eb6614926 Mon Sep 17 00:00:00 2001 From: Conventional Changelog Action Date: Thu, 5 Oct 2023 12:24:40 +0000 Subject: [PATCH] chore(release): v0.2.1 [skip ci] --- CHANGELOG.md | 18 +++++++++--------- package.json | 2 +- pyproject.toml | 25 +++++++++++++------------ 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 383dc41..9f73e7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.2.1](https://github.com/Mazars-Tech/AD_Miner/compare/v0.2.0...v0.2.1) (2023-10-05) + + +### Bug Fixes + +* two typos ([eaa36d9](https://github.com/Mazars-Tech/AD_Miner/commit/eaa36d9284f1a53a6f034ec33ff38725e5e72ce1)) + + + # [0.2.0](https://github.com/Mazars-Tech/AD_Miner/compare/v0.1.3...v0.2.0) (2023-10-05) @@ -43,12 +52,3 @@ -# [0.1.0](https://github.com/Mazars-Tech/AD_Miner/compare/59951f3aa367bacbd4697d8e1cb4b010eee7f8f7...v0.1.0) (2023-09-28) - - -### Features - -* trigger initial release ([59951f3](https://github.com/Mazars-Tech/AD_Miner/commit/59951f3aa367bacbd4697d8e1cb4b010eee7f8f7)) - - - diff --git a/package.json b/package.json index d787358..4bd29bc 100644 --- a/package.json +++ b/package.json @@ -1,3 +1,3 @@ { - "version": "0.2.0" + "version": "0.2.1" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5bd125c..9b5478a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,22 +1,23 @@ +version = "0.1.0" + [tool.poetry] name = "AD_Miner" version = "0.1.0" description = "AD Miner is an Active Directory audit tool that leverages cypher queries to crunch data from the Bloodhound graph database to uncover security weaknesses." -authors = ["Thomas Girard", "Jean-Michel Besnard", "Alexandre Lac"] +authors = [ "Thomas Girard", "Jean-Michel Besnard", "Alexandre Lac" ] license = "GPL-3.0" +dev-dependencies = { } -[tool.poetry.dependencies] -python = ">=3.9" -neo4j = "==5.6.0" -numpy = "==1.24.2" -pytz = "==2022.7.1" -tqdm = "==4.64.1" + [tool.poetry.dependencies] + python = ">=3.9" + neo4j = "==5.6.0" + numpy = "==1.24.2" + pytz = "==2022.7.1" + tqdm = "==4.64.1" -[tool.poetry.dev-dependencies] + [tool.poetry.scripts] + AD-miner = "ad_miner.__main__:main" [build-system] -requires = ["poetry-core"] +requires = [ "poetry-core" ] build-backend = "poetry.core.masonry.api" - -[tool.poetry.scripts] -AD-miner="ad_miner.__main__:main" \ No newline at end of file