Skip to content

Commit 5a7e195

Browse files
API URL max length changed from 255 to 512
1 parent 6842123 commit 5a7e195

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DRF API Logger
2-
![version](https://img.shields.io/badge/version-0.0.7-blue.svg)
2+
![version](https://img.shields.io/badge/version-0.0.8-blue.svg)
33
[![Downloads](https://pepy.tech/badge/drf-api-logger)](http://pepy.tech/project/drf-api-logger)
44
[![Downloads](https://pepy.tech/badge/drf-api-logger/month)](https://pepy.tech/project/drf-api-logger)
55
[![Open Source](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://opensource.org/)

drf_api_logger/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Meta:
2020

2121

2222
class APILogsModel(BaseModel):
23-
api = models.CharField(max_length=255, help_text='API URL')
23+
api = models.CharField(max_length=512, help_text='API URL')
2424
headers = models.TextField()
2525
body = models.TextField()
2626
method = models.CharField(max_length=10, db_index=True)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def get_long_desc():
99

1010
setuptools.setup(
1111
name="drf_api_logger",
12-
version="0.0.7",
12+
version="0.0.8",
1313
author="Vishal Anand",
1414
author_email="[email protected]",
1515
description="An API Logger for your Django Rest Framework project.",

0 commit comments

Comments
 (0)