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

Commit

Permalink
Release 1.0.5. (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
omegatrix authored Sep 19, 2022
1 parent 8da00d6 commit 00a01b6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

<a id='changelog-1.0.5'></a>
# 1.0.5 — 2022-09-19

## Dependencies

- Bump `virtualenv` from `20.16.4` to `20.16.5`.
- Bump `identify` from `2.5.3` to `2.5.5`.
- Bump `certifi` from `2022.6.15` to `2022.9.14`.
- Bump `tox` from `3.25.1` to `3.26.0`.
- Bump `idna` from `3.3` to `3.4`.

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

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.4"
version = "1.0.5"
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.4"
__version__ = "1.0.5"

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.4"
assert __version__ == "1.0.5"


def test_trycatch():
Expand Down

0 comments on commit 00a01b6

Please sign in to comment.