diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..47e3e0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# 0.0.2 + +## Fixes + +- Fix `{% importmap %}` not being packaged + +# 0.0.1 + +Initial implementation + +## Features + +- Source project's `importmaps.py` +- Source project app's `importmaps.py` +- Merge all importmaps into one +- Make importmaps available in views with `importmap` context variable diff --git a/importmap/__init__.py b/importmap/__init__.py index 77a3a66..504277c 100644 --- a/importmap/__init__.py +++ b/importmap/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.1" +__version__ = "0.0.2" from .base import importmaps, static diff --git a/pyproject.toml b/pyproject.toml index 71968b5..3a1435f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] requires-python = ">= 3.9"