Skip to content

Update to v3.1.1 #408

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ For more general information, view the [readme](README.md).
Releases are added to the
[github release page](https://github.com/ezhome/django-webpack-loader/releases).

## Unreleased
## [3.1.1] -- 2024-08-30

- Add support for Django 5.1

Expand Down
2 changes: 1 addition & 1 deletion examples/code-splitting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.92.0",
"webpack-bundle-tracker": "3.1.0",
"webpack-bundle-tracker": "3.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-imports/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.92.0",
"webpack-bundle-tracker": "3.1.0",
"webpack-bundle-tracker": "3.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/hot-reload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.92.0",
"webpack-bundle-tracker": "3.1.0",
"webpack-bundle-tracker": "3.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.92.0",
"webpack-bundle-tracker": "3.1.0",
"webpack-bundle-tracker": "3.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
Expand Down
8 changes: 4 additions & 4 deletions tests/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"react": "^16.0.0",
"webpack": "^4.0.0",
"compression-webpack-plugin": "^6.1.1",
"webpack-bundle-tracker": "3.1.0",
"webpack-bundle-tracker": "3.1.1",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.0.0"
}
Expand Down
8 changes: 4 additions & 4 deletions tests_webpack5/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests_webpack5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"devDependencies": {
"webpack": "^5.92.0",
"webpack-bundle-tracker": "3.1.0",
"webpack-bundle-tracker": "3.1.1",
"webpack-cli": "^5.1.4"
}
}
2 changes: 1 addition & 1 deletion webpack_loader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Vinta Software"
__version__ = "3.1.0"
__version__ = "3.1.1"

import django

Expand Down