Skip to content

Commit

Permalink
Bugfix for 2.7.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverandrich committed Dec 5, 2023
1 parent 08b062f commit 973ecd7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.7.2

- Fixed broken commit for 2.7.1. Sorry guys.

## 2.7.1

- Bumped default Tailwind CLI version to 3.3.6.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-tailwind-cli"
version = "2.7.1"
version = "2.7.2"
description = "Django and Tailwind integration based on the prebuilt Tailwind CSS CLI."
authors = ["Oliver Andrich <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/django_tailwind_cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Config:

@property
def tailwind_version(self) -> str:
return getattr(settings, "TAILWIND_CLI_VERSION", "3.3.5")
return getattr(settings, "TAILWIND_CLI_VERSION", "3.3.6")

@property
def cli_path(self) -> Union[Path, None]:
Expand Down

0 comments on commit 973ecd7

Please sign in to comment.