Skip to content

Commit

Permalink
Merge pull request #15 from Moesif/refactor-user-agent
Browse files Browse the repository at this point in the history
Refactor: Set correct user-agent version
  • Loading branch information
keyur9 authored Oct 9, 2022
2 parents 9e903d7 + c0c8c4a commit b0894a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moesifasgi/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, settings=None, *args, **kwargs):
self.DEBUG = self.moesif_settings.get('DEBUG', False)
if self.DEBUG:
Configuration.BASE_URI = self.moesif_settings.get('BASE_URI', 'https://api.moesif.net')
Configuration.version = 'moesifasgi-python/0.0.3'
Configuration.version = 'moesifasgi-python/0.1.4'
if self.moesif_settings.get('CAPTURE_OUTGOING_REQUESTS', False):
try:
if self.DEBUG:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='0.1.3',
version='0.1.4',

description='Moesif Middleware for Python ASGI based platforms (FastAPI & Others)',
long_description=long_description,
Expand Down

0 comments on commit b0894a4

Please sign in to comment.