Skip to content

Commit

Permalink
Merge pull request #10 from arthexis/arthexis/fix-7
Browse files Browse the repository at this point in the history
Arthexis/fix 7
  • Loading branch information
arthexis authored Mar 15, 2023
2 parents f935976 + 0e32adb commit 9fcee7c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release Notes
=============

0.2.7 (2023-03-14)
-------------------

- Fixed a bug in the *unvanish* function.

0.2.5 (2023-03-09)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"

[project]
name = "sigils"
version = "0.2.6"
version = "0.2.7"
authors = [
{name = "Rafael Jesús Guillén Osorio", email = "arthexis@gmail.com"},
]
description = "Manage context-less text with [[SIGILS]]."
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.10"
keywords = ["utils", "sigils", "string", "text", "magic", "context"]
license = {text = "MIT"}
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion sigils/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def vanish(

def unvanish(
text: str,
sigils: Tuple[str] | List[str],
sigils: Union[Tuple[str], List[str]],
pattern: Union[Text, Iterator],
) -> str:
"""
Expand Down

0 comments on commit 9fcee7c

Please sign in to comment.