Skip to content

Commit

Permalink
bump version to 0.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: Tamar Galer <tamar@ox.security>
  • Loading branch information
tamar-ox committed Jul 10, 2024
1 parent d95035a commit c12d087
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion maskerlogger/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Init file for oxformatter package.
"""
from maskerlogger.masker_formatter import MaskerFormatter # noqa
__version__ = '0.2.0'
__version__ = '0.2.1'
3 changes: 2 additions & 1 deletion maskerlogger/masker_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from ahocorasick_regex_match import RegexMatcher
import os

DEFAULT_SECRETS_CONFIG_PATH = os.path.join(os.path.dirname(__file__), "config/gitleaks.toml")
DEFAULT_SECRETS_CONFIG_PATH = os.path.join(
os.path.dirname(__file__), "config/gitleaks.toml")
_APPLY_MASK = 'apply_mask'
SKIP_MASK = {_APPLY_MASK: False}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "maskerlogger"
version = "0.2.0"
version = "0.2.1"
description = "mask your secrets from your logs"
authors = ["Tamar Galer <tamar@ox.security>"]
readme = "README.md"
Expand Down

0 comments on commit c12d087

Please sign in to comment.