From be405b520da80bcf29adb94358e0a6cc9549e01d Mon Sep 17 00:00:00 2001 From: impocode Date: Tue, 15 Nov 2022 18:11:09 +0500 Subject: [PATCH] feat: update version --- jsonapi_pydantic/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jsonapi_pydantic/__init__.py b/jsonapi_pydantic/__init__.py index 581f64c..7cd46e5 100644 --- a/jsonapi_pydantic/__init__.py +++ b/jsonapi_pydantic/__init__.py @@ -1,5 +1,5 @@ from jsonapi_pydantic import constants, v1_0 -__version__ = "0.1.4" +__version__ = "0.1.5" __all__ = ["constants", "v1_0"] diff --git a/pyproject.toml b/pyproject.toml index 5830a6e..796a2b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jsonapi-pydantic" -version = "0.1.4" +version = "0.1.5" description = "JSON:API implementation with pydantic." authors = ["impocode "]