Skip to content

Commit dfb5a00

Browse files
committed
Releases 4.4.2
1 parent 216c9e9 commit dfb5a00

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

3-
## 4.4.1
3+
# 4.4.2
4+
- Fixes an issue with CSS path configuration.
5+
46

7+
## 4.4.1
58
- Fixes an issue when `raw_input` is used instead of `input`.
69

710
## 4.4.0

example/project/settings.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,19 @@
3030
INSTALLED_APPS = [
3131
"django.contrib.staticfiles",
3232
"tailwind",
33-
# "theme",
34-
"theme_standalone",
33+
"theme",
34+
# "theme_standalone",
3535
]
3636

37+
TAILWIND_USE_STANDALONE_BINARY = True
38+
TAILWIND_STANDALONE_BINARY_VERSION = "v4.1.17"
39+
3740
if DEBUG:
3841
INSTALLED_APPS += [
3942
"django_browser_reload",
4043
]
4144

42-
TAILWIND_APP_NAME = "theme_standalone"
45+
TAILWIND_APP_NAME = "theme"
4346

4447
MIDDLEWARE = [
4548
"django.middleware.security.SecurityMiddleware",

example/theme/static_src/src/styles.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@import "tailwindcss";
2-
@plugin "daisyui";
32

43
/**
54
* A catch-all path to Django template files, JavaScript, and Python files

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [ "hatchling" ]
44

55
[project]
66
name = "django-tailwind"
7-
version = "4.4.1"
7+
version = "4.4.2"
88
description = "Tailwind CSS Framework for Django projects"
99
readme = "README.md"
1010
keywords = [

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)