Skip to content

Commit

Permalink
Merge pull request #75 from koladev32/fix-migrations
Browse files Browse the repository at this point in the history
Fix migrations
  • Loading branch information
koladev32 authored Dec 28, 2024
2 parents 82398e4 + 947b055 commit 53a6b23
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 @@ -4,6 +4,11 @@ Changelog
[Unreleased]
------------

[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 53a6b23

Please sign in to comment.