Skip to content

Commit

Permalink
Merge branch 'v1-fixes'
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
  • Loading branch information
koladev32 committed Dec 28, 2024
2 parents b0d3c45 + 53a6b23 commit 9eaf353
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Changelog

- Adding IP whitelisting and blacklisting (#68)

[v2.1.1] - 2024-12-27
------------------

- Fixed: Additional migration is generated (#73)

[v2.1.0] - 2024-05-23
------------------

Expand Down
17 changes: 17 additions & 0 deletions drf_simple_apikey/migrations/0003_alter_apikey_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("drf_simple_apikey", "0002_alter_apikey_options"),
]

operations = [
migrations.AlterField(
model_name="apikey",
name="id",
field=models.BigAutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
]
2 changes: 1 addition & 1 deletion drf_simple_apikey/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.1.0"
VERSION = "2.1.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ build-backend = "setuptools.build_meta"

[project]
name = "drf-simple-apikey"
version = "2.1.0"
version = "2.1.1"
dynamic = ["description", "readme", "optional-dependencies", "dependencies", "classifiers", "authors", "license"]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.0
current_version = 2.1.1
commit = True
tag = True

Expand Down

0 comments on commit 9eaf353

Please sign in to comment.