From 2c60430111ff6e12a16493ccd5883a83a001d7e5 Mon Sep 17 00:00:00 2001 From: Keyur Date: Wed, 8 May 2024 16:26:21 -0700 Subject: [PATCH] Refactor: Bump moesfiapi to version 1.4.6 Refactor: Bump moesfiapi to version 1.4.6 Bump version to 1.0.1 --- moesifasgi/middleware.py | 2 +- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/moesifasgi/middleware.py b/moesifasgi/middleware.py index 685b38a..0566b9b 100644 --- a/moesifasgi/middleware.py +++ b/moesifasgi/middleware.py @@ -84,7 +84,7 @@ def schedule_config_job(self): def initialize_config(self): Configuration.BASE_URI = self.settings.get("BASE_URI", "https://api.moesif.net") - Configuration.version = 'moesifasgi-python/1.0.0' + Configuration.version = 'moesifasgi-python/1.0.1' self.LOG_BODY = self.settings.get("LOG_BODY", True) self.app_config = AppConfig() diff --git a/requirements.txt b/requirements.txt index c31abf3..2837493 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ nose>=1.3.7 -moesifapi>=1.4.5 +moesifapi>=1.4.6 moesifpythonrequest>=0.3.3 starlette>=0.16.0 diff --git a/setup.py b/setup.py index 59e459d..ea97798 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1.0.0', + version='1.0.1', description='Moesif Middleware for Python ASGI based platforms (FastAPI & Others)', long_description=long_description, @@ -81,7 +81,7 @@ # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['starlette>=0.16.0', 'moesifapi>=1.4.5', 'moesifpythonrequest>=0.3.3'], + install_requires=['starlette>=0.16.0', 'moesifapi>=1.4.6', 'moesifpythonrequest>=0.3.3'], # List additional groups of dependencies here (e.g. development # dependencies). You can install these using the following syntax,