Skip to content

Commit

Permalink
v24.11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Nov 20, 2024
1 parent 08629ec commit 97b69eb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- id: blacken-docs
additional_dependencies:
- black==24.10.0
files: '(?:README\.md|docs\/.*\.(?:md|rst))'
files: '(?:README\.md|docs\/.*\.(?:md|rst)|templates\/.*.tpl)'

- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

**24.11.5 (2024-11-20)**
* Improved usage of `blacken-docs`
* Fixed a naming issue with security template

**24.11.4 (2024-11-19)**
* Added .gitignore template

Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ambient package update tool for clean and swift maintenance"""

__version__ = "24.11.4"
__version__ = "24.11.5"
8 changes: 4 additions & 4 deletions ambient_package_update/templates/snippets/installation.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

- Add module to `INSTALLED_APPS` within the main django `settings.py`:

````
```python
INSTALLED_APPS = (
...
'{{ module_name }}',
# ...
"{{ module_name }}",
)
````
```

{% if has_migrations %}
- Apply migrations by running:
Expand Down

0 comments on commit 97b69eb

Please sign in to comment.