Skip to content

Commit 7407db7

Browse files
🔖 bump version 0.14.1 -> 0.14.2 (#184)
* 🔖 bump version 0.14.1 -> 0.14.2 * update CHANGELOG for version 0.14.2 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent cdd325e commit 7407db7

File tree

5 files changed

+22
-19
lines changed

5 files changed

+22
-19
lines changed

.copier/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _commit: v2024.27-4-g3fe659b
33
_src_path: /home/josh/projects/work/django-twc-package
44
author_email: [email protected]
55
author_name: Josh Thomas
6-
current_version: 0.14.1
6+
current_version: 0.14.2
77
django_versions:
88
- "4.2"
99
- "5.0"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
1818

1919
## [Unreleased]
2020

21+
## [0.14.2]
22+
2123
### Changed
2224

2325
- **Internal**: Created `BirdAssetStorage` to handle static file storage with custom prefixes and future CSS and JS scoping.
@@ -354,7 +356,7 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
354356

355357
- Josh Thomas <[email protected]> (maintainer)
356358

357-
[unreleased]: https://github.com/joshuadavidthomas/django-bird/compare/v0.14.1...HEAD
359+
[unreleased]: https://github.com/joshuadavidthomas/django-bird/compare/v0.14.2...HEAD
358360
[0.1.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.1.0
359361
[0.1.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.1.1
360362
[0.2.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.2.0
@@ -387,3 +389,4 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
387389
[0.13.2]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.13.2
388390
[0.14.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.14.0
389391
[0.14.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.14.1
392+
[0.14.2]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.14.2

pyproject.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dev = [
1717
"pytest-django>=4.9.0",
1818
"pytest-randomly>=3.15.0",
1919
"pytest-xdist>=3.6.1",
20-
"ruff>=0.6.6",
20+
"ruff>=0.6.6"
2121
]
2222
docs = [
2323
"furo>=2024.8.6",
@@ -26,17 +26,17 @@ docs = [
2626
"sphinx-autobuild>=2024.10.3",
2727
"sphinx-autodoc2>=0.5.0",
2828
"sphinx-copybutton>=0.5.2",
29-
"sphinx-inline-tabs>=2023.4.21",
29+
"sphinx-inline-tabs>=2023.4.21"
3030
]
3131
types = [
3232
"django-stubs>=5.1.0",
3333
"django-stubs-ext>=5.1.0",
3434
"mypy>=1.11.2",
35-
"types-cachetools>=5.5.0.20240820",
35+
"types-cachetools>=5.5.0.20240820"
3636
]
3737

3838
[project]
39-
authors = [{ name = "Josh Thomas", email = "[email protected]" }]
39+
authors = [{name = "Josh Thomas", email = "[email protected]"}]
4040
classifiers = [
4141
"Development Status :: 3 - Alpha",
4242
"Framework :: Django",
@@ -53,13 +53,13 @@ classifiers = [
5353
"Programming Language :: Python :: 3.11",
5454
"Programming Language :: Python :: 3.12",
5555
"Programming Language :: Python :: 3.13",
56-
"Programming Language :: Python :: Implementation :: CPython",
56+
"Programming Language :: Python :: Implementation :: CPython"
5757
]
5858
dependencies = ["cachetools>=5.5.0", "django>=4.2"]
5959
description = "High-flying components for perfectionists with deadlines"
6060
dynamic = ["version"]
6161
keywords = []
62-
license = { file = "LICENSE" }
62+
license = {file = "LICENSE"}
6363
name = "django-bird"
6464
readme = "README.md"
6565
requires-python = ">=3.10"
@@ -92,8 +92,8 @@ root = "tests"
9292
[tool.bumpver]
9393
commit = true
9494
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
95-
current_version = "0.14.1"
96-
push = false # set to false for CI
95+
current_version = "0.14.2"
96+
push = false # set to false for CI
9797
tag = false
9898
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
9999

@@ -112,16 +112,16 @@ exclude_lines = [
112112
"if not DEBUG:",
113113
"if settings.DEBUG:",
114114
"if TYPE_CHECKING:",
115-
'def __str__\(self\)\s?\-?\>?\s?\w*\:',
115+
'def __str__\(self\)\s?\-?\>?\s?\w*\:'
116116
]
117117
fail_under = 98
118118

119119
[tool.coverage.run]
120120
omit = [
121121
"src/django_bird/migrations/*",
122122
"src/django_bird/_typing.py",
123-
"src/django_bird/views.py", # TODO: remove when not empty
124-
"tests/*",
123+
"src/django_bird/views.py", # TODO: remove when not empty
124+
"tests/*"
125125
]
126126
source = ["src/django_bird"]
127127

@@ -133,7 +133,7 @@ strict_settings = false
133133
blank_line_after_tag = "endblock,endpartialdef,extends,load"
134134
blank_line_before_tag = "block,partialdef"
135135
custom_blocks = "bird,bird:slot,partialdef"
136-
ignore = "H031" # Don't require `meta` tag keywords
136+
ignore = "H031" # Don't require `meta` tag keywords
137137
indent = 2
138138
profile = "django"
139139

@@ -193,7 +193,7 @@ exclude = [
193193
"dist",
194194
"migrations",
195195
"node_modules",
196-
"venv",
196+
"venv"
197197
]
198198
extend-include = ["*.pyi?"]
199199
indent-width = 4
@@ -215,13 +215,13 @@ quote-style = "double"
215215
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
216216
# Allow autofix for all enabled rules (when `--fix`) is provided.
217217
fixable = ["A", "B", "C", "D", "E", "F", "I"]
218-
ignore = ["E501", "E741"] # temporary
218+
ignore = ["E501", "E741"] # temporary
219219
select = [
220220
"B", # flake8-bugbear
221221
"E", # Pycodestyle
222222
"F", # Pyflakes
223223
"I", # isort
224-
"UP", # pyupgrade
224+
"UP" # pyupgrade
225225
]
226226
unfixable = []
227227

src/django_bird/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.14.1"
3+
__version__ = "0.14.2"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
def test_version():
7-
assert __version__ == "0.14.1"
7+
assert __version__ == "0.14.2"

0 commit comments

Comments
 (0)