Skip to content

Commit

Permalink
API URL max length changed from 255 to 512
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalanandl177 committed Nov 21, 2020
1 parent 6842123 commit 5a7e195
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DRF API Logger
![version](https://img.shields.io/badge/version-0.0.7-blue.svg)
![version](https://img.shields.io/badge/version-0.0.8-blue.svg)
[![Downloads](https://pepy.tech/badge/drf-api-logger)](http://pepy.tech/project/drf-api-logger)
[![Downloads](https://pepy.tech/badge/drf-api-logger/month)](https://pepy.tech/project/drf-api-logger)
[![Open Source](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://opensource.org/)
Expand Down
2 changes: 1 addition & 1 deletion drf_api_logger/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Meta:


class APILogsModel(BaseModel):
api = models.CharField(max_length=255, help_text='API URL')
api = models.CharField(max_length=512, help_text='API URL')
headers = models.TextField()
body = models.TextField()
method = models.CharField(max_length=10, db_index=True)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_long_desc():

setuptools.setup(
name="drf_api_logger",
version="0.0.7",
version="0.0.8",
author="Vishal Anand",
author_email="[email protected]",
description="An API Logger for your Django Rest Framework project.",
Expand Down

0 comments on commit 5a7e195

Please sign in to comment.