v1.1.0
This commit is contained in:
parent
7baef8a7bc
commit
d8caea5c34
|
@ -3,4 +3,4 @@
|
|||
from .executor import AioHttpExecutor # noqa: F401
|
||||
from .views import JSONRPCView # noqa: F401
|
||||
|
||||
__version__ = '1.1.0b1'
|
||||
__version__ = '1.1.0'
|
||||
|
|
|
@ -24,7 +24,7 @@ author = 'Tomek Wójcik'
|
|||
version = '1.1.0'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.1.0b1'
|
||||
release = '1.1.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
4
packages/bthlabs-jsonrpc-aiohttp/poetry.lock
generated
4
packages/bthlabs-jsonrpc-aiohttp/poetry.lock
generated
|
@ -225,7 +225,7 @@ dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"]
|
|||
|
||||
[[package]]
|
||||
name = "bthlabs-jsonrpc-core"
|
||||
version = "1.1.0b1"
|
||||
version = "1.1.0"
|
||||
description = "BTHLabs JSONRPC - Core"
|
||||
optional = false
|
||||
python-versions = "^3.10"
|
||||
|
@ -1394,4 +1394,4 @@ multidict = ">=4.0"
|
|||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.10"
|
||||
content-hash = "d811e0f6f906ebd7ffa9dbeaf0a17f3c104195069673d26ea05297a39a5d87bc"
|
||||
content-hash = "662591bbaa3261926cd43f20ae4f4defc1647ae2508c11c334cad4118173823a"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bthlabs-jsonrpc-aiohttp"
|
||||
version = "1.1.0b1"
|
||||
version = "1.1.0"
|
||||
description = "BTHLabs JSONRPC - aiohttp integration"
|
||||
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
|
||||
maintainers = ["BTHLabs <contact@bthlabs.pl>"]
|
||||
|
@ -13,7 +13,7 @@ documentation = "https://projects.bthlabs.pl/bthlabs-jsonrpc/aiohttp/"
|
|||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
aiohttp = ">=3.6,<4.0"
|
||||
bthlabs-jsonrpc-core = "1.1.0b1"
|
||||
bthlabs-jsonrpc-core = "1.1.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
aiohttp = "3.9.1"
|
||||
|
|
|
@ -13,4 +13,4 @@ from .executor import Executor # noqa: F401
|
|||
from .registry import MethodRegistry # noqa: F401
|
||||
from .serializer import JSONRPCSerializer # noqa: F401
|
||||
|
||||
__version__ = '1.1.0b1'
|
||||
__version__ = '1.1.0'
|
||||
|
|
|
@ -24,7 +24,7 @@ author = 'Tomek Wójcik'
|
|||
version = '1.1.0'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.1.0b1'
|
||||
release = '1.1.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bthlabs-jsonrpc-core"
|
||||
version = "1.1.0b1"
|
||||
version = "1.1.0"
|
||||
description = "BTHLabs JSONRPC - Core"
|
||||
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
|
||||
maintainers = ["BTHLabs <contact@bthlabs.pl>"]
|
||||
|
|
|
@ -10,4 +10,4 @@ from .executor import DjangoExecutor # noqa: F401
|
|||
from .serializer import DjangoJSONRPCSerializer # noqa: F401
|
||||
from .views import JSONRPCView # noqa: F401
|
||||
|
||||
__version__ = '1.1.0b1'
|
||||
__version__ = '1.1.0'
|
||||
|
|
|
@ -24,7 +24,7 @@ author = 'Tomek Wójcik'
|
|||
version = '1.1.0'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.1.0b1'
|
||||
release = '1.1.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
4
packages/bthlabs-jsonrpc-django/poetry.lock
generated
4
packages/bthlabs-jsonrpc-django/poetry.lock
generated
|
@ -44,7 +44,7 @@ dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"]
|
|||
|
||||
[[package]]
|
||||
name = "bthlabs-jsonrpc-core"
|
||||
version = "1.1.0b1"
|
||||
version = "1.1.0"
|
||||
description = "BTHLabs JSONRPC - Core"
|
||||
optional = false
|
||||
python-versions = "^3.10"
|
||||
|
@ -873,4 +873,4 @@ zstd = ["zstandard (>=0.18.0)"]
|
|||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.10"
|
||||
content-hash = "c23dde88ea263be07b8c5e1f9f084581fee73cd3afa8253f833d90fc2ce93f7f"
|
||||
content-hash = "7eb8be95da858d4c43bcaecd75c5f5943befc300c4837667144dd4cfbd20903c"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bthlabs-jsonrpc-django"
|
||||
version = "1.1.0b1"
|
||||
version = "1.1.0"
|
||||
description = "BTHLabs JSONRPC - Django integration"
|
||||
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
|
||||
maintainers = ["BTHLabs <contact@bthlabs.pl>"]
|
||||
|
@ -13,7 +13,7 @@ documentation = "https://projects.bthlabs.pl/bthlabs-jsonrpc/aiohttp/"
|
|||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
django = ">=3.2,<5.0"
|
||||
bthlabs-jsonrpc-core = "1.1.0b1"
|
||||
bthlabs-jsonrpc-core = "1.1.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
bthlabs-jsonrpc-core = { path = "../bthlabs-jsonrpc-core", develop = true }
|
||||
|
|
Loading…
Reference in New Issue
Block a user