Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
2XXE-SRA committed Oct 24, 2024
1 parent 9d76a5d commit 58d8344
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
***

# Version 1.2.1 - October 2024

- Dependency updates

***

# Version 1.2.0 - January 2024

- Add `settings` key to config to allow settings configuration in config file
Expand Down
Binary file removed dist/pdcd-1.2.0-py3-none-any.whl
Binary file not shown.
3 changes: 2 additions & 1 deletion pdcd/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from pydantic import BaseSettings, Field
from pydantic_settings import BaseSettings
from pydantic import Field
from pathlib import Path
import os

Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[tool.poetry]
name = "pdcd"
version = "1.2.0"
version = "1.2.1"
description = "Tool that orchestrates executing Docker containers to build payloads"
authors = ["2XXE <[email protected]>"]
readme = "README.md"
license = "MIT"

[tool.poetry.dependencies]
python = "^3.8"
docker = "^5.0.0"
desert = "^2020.11.18"
PyYAML = "^5.4.1"
boto3 = "^1.24.54"
impacket = "^0.10.0"
click = "^8.1.3"
mythic = "^0.1.0"
pydantic = "^1.10.5"
docker = "^7.1.0"
desert = "^2022.9.22"
pyyaml = "^6.0.2"
boto3 = "^1.35.47"
impacket = "^0.12.0"
click = "^8.1.7"
mythic = "^0.2.5"
pydantic-settings = "^2.6.0"

[tool.poetry.group.dev.dependencies]
black = "^22.0"
Expand Down

0 comments on commit 58d8344

Please sign in to comment.