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

Commit

Permalink
Prepare release 1.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
omegatrix committed Sep 11, 2022
1 parent 3b9ba61 commit 76ad8f6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

<a id='changelog-1.0.4'></a>
# 1.0.4 — 2022-09-11

## Dependencies

- Bump dev-dependency `virtualenv` from `20.16.3` to `20.16.4`.
- Bump dev-dependency `pytest` from `7.1.2` to `7.1.3`.

<a id='changelog-1.0.3'></a>
# 1.0.3 — 2022-08-28

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 = "trier"
version = "1.0.3"
version = "1.0.4"
description = "Utility wrapper to handle exceptions."
license = "MIT"
authors = ["Arnold Anthonypillai <arnoldbronson16@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/trier/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from trycatch import Try
"""

__version__ = "1.0.3"
__version__ = "1.0.4"

from typing import Any, Awaitable, Callable, Tuple, Type, TypeVar, Union

Expand Down
2 changes: 1 addition & 1 deletion tests/test_trier.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async def dummy_async_function() -> Awaitable[str]:


def test_version():
assert __version__ == "1.0.3"
assert __version__ == "1.0.4"


def test_trycatch():
Expand Down

0 comments on commit 76ad8f6

Please sign in to comment.