Skip to content

Commit

Permalink
New version: 2.0.0 → 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartMacKay committed Jan 11, 2025
1 parent 9d8e32f commit 45c79cc
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 59 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ and by implication, [Semantic Versioning](http://semver.org/).

Latest
------

2.0.1 (2025-01-11)
------------------
* Added setting for govuk frontend version to allow conditional HTML generation
* Changed Warning Text component to hide the "Warning" prefix to the message
* Fixed conditional radio buttons to reveal hidden fields when an option is selected
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# The short X.Y version.
version = "0.3"
# The full version, including alpha/beta/rc tags.
release = "2.0.0"
release = "2.0.1"

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["setuptools >= 61.0"]

[project]
name = "crispy-forms-gds"
version = "2.0.0"
version = "2.0.1"
description = "Django application to add 'django-crispy-forms' layout objects for the GOV.UK Design System."
keywords = ["Django, django-crispy-forms, gov.uk, design system"]
license = { file = "LICENCE.txt" }
Expand Down Expand Up @@ -53,7 +53,7 @@ dev-dependencies = [
]

[tool.bumpversion]
current_version = "2.0.0"
current_version = "2.0.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
ignore_missing_version = false
Expand Down
2 changes: 1 addition & 1 deletion src/crispy_forms_gds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

__version__ = "2.0.0"
__version__ = "2.0.1"
__author__ = "Wildfish"
__email__ = "[email protected]"
__license__ = "MIT License"
Expand Down
Loading

0 comments on commit 45c79cc

Please sign in to comment.