Skip to content

Commit

Permalink
project: Changed to the MIT license
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartMacKay committed Dec 30, 2024
1 parent 3b80fd8 commit cbe54c9
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 34 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ Latest
* Dropped support for python 3.8, minimum version is now 3.10
* Dropped the base template, use the `Page Template`_ instead
* Changed demo site to use `pre-compiled`_ govuk-frontend assets
* Changed the licence to the `MIT`_ license

.. _Page Template: https://design-system.service.gov.uk/styles/page-template/
.. _pre-compiled: https://frontend.design-system.service.gov.uk/install-using-precompiled-files/
.. _MIT: https://opensource.org/licenses/MIT

0.3.2 (2024-12-29)
------------------
Expand Down
42 changes: 17 additions & 25 deletions LICENCE.txt
Original file line number Diff line number Diff line change
@@ -1,29 +1,21 @@
Copyright (C) 2020 by Wildfish Ltd. <[email protected]>
The MIT License (MIT)

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
Copyright (c) 2024 Wildfish Ltd. <[email protected]>

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
20 changes: 12 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,13 +290,17 @@ styled using the `GOV.UK Design System`_.

.. _GOV.UK Frontend release note: https://github.com/alphagov/govuk-frontend/releases/latest

Resources
=========
Project Information
===================

* Read the documentation on `Read the docs`_
* Download the `PyPi package`_
* Learn more about `Django Crispy Forms`_
* Documentation: https://ebird-checklists.readthedocs.io/en/latest/
* Issues: https://github.com/wildfish/crispy-forms-gds/issues
* Repository: https://github.com/wildfish/crispy-forms-gds/

.. _Read the docs: http://crispy-forms-gds.readthedocs.io/
.. _PyPi package: http://pypi.python.org/pypi/crispy-forms-gds
.. _Django Crispy Forms: https://django-crispy-forms.readthedocs.io/en/latest/
The app is tested with Python 3.10+, and version 1.x officially supports Django
4.2 LTS, and `Django Crispy Forms`_ 2.x. The app simply generates HTML, so it
can probably be used with earlier versions of Django and Django Crispy Forms.

Crispy Forms GDS is released under the terms of the `MIT`_ license.

.. _MIT: https://opensource.org/licenses/MIT
3 changes: 2 additions & 1 deletion src/crispy_forms_gds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
objects for the GOV.UK Design System.
"""

__version__ = "0.3.2"
__author__ = "Wildfish"
__email__ = "[email protected]"
__license__ = "BSD 3-clause License"
__license__ = "MIT License"
__copyright__ = "Copyright (C) 2020-2024 Wildfish Ltd."

0 comments on commit cbe54c9

Please sign in to comment.