Skip to content

Commit 7ced6fc

Browse files
committed
Update version to 0.1.4.
1 parent 39982a4 commit 7ced6fc

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "redc"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "RedC is a high-performance, asynchronous HTTP client library for Python, built on top of the powerful curl library"
99
readme = "README.md"
1010
authors = [{ name = "AYMEN Mohammed", email = "let.me.code.safe@gmail.com" }]

redc/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
from .callbacks import StreamCallback, ProgressCallback
1+
from . import utils
2+
from .callbacks import ProgressCallback, StreamCallback
23
from .client import Client
34
from .codes import HTTPStatus
45
from .exceptions import HTTPError
56
from .response import Response
6-
from . import utils
77

88
__all__ = [
9+
"utils",
10+
"ProgressCallback",
11+
"StreamCallback",
912
"Client",
10-
"Response",
11-
"HTTPError",
1213
"HTTPStatus",
13-
"StreamCallback",
14-
"ProgressCallback",
15-
"utils",
14+
"HTTPError",
15+
"Response",
1616
]
1717

18-
__version__ = "0.1.3"
18+
__version__ = "0.1.4"
1919
__copyright__ = "Copyright (c) 2025 RedC, AYMENJD"
2020
__license__ = "MIT License"
2121

0 commit comments

Comments
 (0)