diff --git a/CHANGELOG.md b/CHANGELOG.md index f6c26af..be0d61b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Current version (in development) +## v1.0.0 (2023-12-25) * Feature: Added `monkey_patch_drf()` utility. diff --git a/README.md b/README.md index f94c409..4abb1de 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A drop-in replacement for Django's `AutoField` that gives you "Stripe-style" self-identifying string object IDs, like `user_1234`. -**Status:** Generaly stable. No warranty. See `LICENSE.txt`. +**Status:** Stable. No warranty, see `LICENSE.txt`. [![PyPI version](https://badge.fury.io/py/django-spicy-id.svg)](https://badge.fury.io/py/django-spicy-id) [![PyPI Supported Python Versions](https://img.shields.io/pypi/pyversions/django-spicy-id.svg)](https://pypi.python.org/pypi/django-spicy-id/) ![Test status](https://github.com/mik3y/django-spicy-id/actions/workflows/test.yml/badge.svg) diff --git a/pyproject.toml b/pyproject.toml index d0c7af5..476c32d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-spicy-id" -version = "0.7.0" +version = "1.0.0" description = "" authors = ["mike wakerly "] license = "MIT" diff --git a/setup.cfg b/setup.cfg index 6bfd135..8075e52 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-spicy-id -version = 0.7.0 +version = 1.0.0 description = Fancy ID fields for django models. long_description = file: README.md long_description_content_type = text/markdown