diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f8434b1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + + + +## v0.2.0 (2021-11-12) +### Feature +* **ci:** Add release workflow ([#7](https://github.com/crccheck/django-test-curl/issues/7)) ([`02b8366`](https://github.com/crccheck/django-test-curl/commit/02b83668cc9fb6fe79ca7f5b761908f06899ee40)) +* **ci:** Add flake8 and mypy linting too ([#6](https://github.com/crccheck/django-test-curl/issues/6)) ([`b2a34cc`](https://github.com/crccheck/django-test-curl/commit/b2a34ccf5bdfdb131fd2d6de034fc6a0640a8f79)) +* **ci:** Add ci workflows ([#5](https://github.com/crccheck/django-test-curl/issues/5)) ([`e62f983`](https://github.com/crccheck/django-test-curl/commit/e62f983116ec76b5c839a1825032d62abb0ead77)) diff --git a/django_test_curl/__init__.py b/django_test_curl/__init__.py index b125733..9693ea7 100644 --- a/django_test_curl/__init__.py +++ b/django_test_curl/__init__.py @@ -1,3 +1,3 @@ from .django_test_curl import CurlClient, CurlClientMixin # noqa -__version__ = "0.1.2" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 2e0cbb3..252152c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-test-curl" -version = "0.1.2" +version = "0.2.0" description = "Write Django test requests using curl syntax" authors = ["crccheck "] license = "Apache-2.0"