Skip to content

Latest commit

 

History

History
137 lines (80 loc) · 3.69 KB

File metadata and controls

137 lines (80 loc) · 3.69 KB

Changelog

2.4.3

  • Code and project cleanup.
  • Switched back to unittest for testing purposes.

2.4.2

  • Correctly map aarch64 machine architecture to arm64 for downloading the CLI.

2.4.1

  • Added checks for runserver_plus management command to give a nice error message, when django-extensions and Werkzeug are not properly installed.

2.4.0

  • Back to Poetry for project management.
  • #57 by @wshayes added optional django-extensions for the runserver_plus command.

2.3.0

  • Changed default config to support lsp-tailwindcss

    "python3 -m django" was replaced with "python manage.py" so that the dynamic configuration of the content selector in tailwind.config.js also works inside the language server for Tailwind CSS in VSCode, Sublime, etc.

2.2.3

  • Fixed a copy&paste error introduced by pasting the tailwind.config.js without proper escaping.

2.2.2

  • Fixed an error locating templates from the global template directories configured via settings.TEMPLATES[0]["DIRS"].

2.2.1

  • Fixed a bug introduced by refactoring the changes from #49.

2.2.0

2.1.1

  • Switched from poetry to hatch for package management.

2.0.6

  • Bugfix for default tailwind.config.js.

2.0.5

  • Fixed a regression with the default path for the Tailwind CLI.

2.0.4

  • The reworked testing setup broke the package. Had to pull 2.0.3 from PyPI.

2.0.3

  • Readded support for Python 3.8.
  • Added Python 3.12 to the testing matrix.

2.0.2

  • Bugfixes for typing errors.
  • Added missing test code.

2.0.0

  • Version 2.0.0 is major refactoring compared to version 1.4.3.
  • No more theme app required.
  • Easier to install.
  • Better out of the box DX.
  • A custom runserver that starts the Tailwind CLI watcher and the debug server in a single terminal session.
  • Less dependencies.

1.4.3

  • Fixed broken links in the documentation and README.

1.4.0

1.3.1

  • Switched back to poetry after a long discussion.

1.3.0

  • Switched from poetry to pdm.

1.2.2

  • Fixed docstrings.
  • Extended ruff configuration.

1.2.1

  • Bumped default tailwind version to 3.2.7.

1.2.0

  • Added support for Django 4.2.

1.1.0

  • Fixes for documentation.
  • Bumped Tailwind CSS default version to 3.2.4.
  • Updated dependencies.

1.0.0

  • Introduced django-click to the project.
  • Refactored the management commands to use django-click.
  • Renamed the startwatcher command to watch. I'm a lazy guy. 😄
  • Switched to tox for local and CI testing.

0.9.2

  • Removed httpx as a dependency. Downloading the cli is done with urllib.request.urlopen once again. Fixes #4
  • Removed rich-styling information from error strings. Fixes #5
  • Fixing more typos in the README.md.

0.9.1

  • Fixing some typos in the documentation.

0.9.0

  • Inital public release.