Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
protoroto committed Sep 27, 2023
1 parent c7bf96d commit 0ab92be
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 30 deletions.
66 changes: 39 additions & 27 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,61 +1,73 @@
.. :changelog:
-------
History
-------

.. towncrier release notes start
0.5.0 (2023-09-27)
==================

Bugfixes
--------

- Fix filer_version url and migrate to bump-my-version (#59)


0.4.0 (2023-08-03)
++++++++++++++++++
==================

* Added compatibility with Django 4.2
* Drop support for Django<3.2
- Added compatibility with Django 4.2
- Drop support for Django<3.2

0.3.0 (2019-03-23)
++++++++++++++++++
==================

* Added compatibility with Django 2.0
- Added compatibility with Django 2.0

0.2.5 (2018-03-29)
++++++++++++++++++
==================

* Fixed error when editing an image
- Fixed error when editing an image

0.2.4 (2018-01-09)
++++++++++++++++++
==================

* Fixed filer version detection
* Added support for Django 1.11
- Fixed filer version detection
- Added support for Django 1.11

0.2.3 (2017-04-19)
++++++++++++++++++
==================

* Added russian translations
- Added russian translations

0.2.2 (2017-03-14)
++++++++++++++++++
==================

* Added french translations
- Added french translations

0.2.1 (2017-01-01)
++++++++++++++++++
==================

* Added support for Django 1.10
- Added support for Django 1.10

0.2.0 (2016-10-22)
++++++++++++++++++
==================

* Added support for canonical urls feature of filer 1.0
* Added support to django-ckeditor (without django CMS)
* Added support to filer up to 1.2
* Added support to ThumbnailOption
* Updated to work with djangocms-text-ckeditor 2.7
* Fixed support for advanced deployment structure
- Added support for canonical urls feature of filer 1.0
- Added support to django-ckeditor (without django CMS)
- Added support to filer up to 1.2
- Added support to ThumbnailOption
- Updated to work with djangocms-text-ckeditor 2.7
- Fixed support for advanced deployment structure

0.1.1 (2014-09-27)
++++++++++++++++++
==================

* Fix static files position
- Fix static files position

0.1.0 (2014-01-27)
++++++++++++++++++
==================

* First release on PyPI.
- First release on PyPI.
1 change: 0 additions & 1 deletion changes/59.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion ckeditor_filebrowser_filer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0.dev1"
__version__ = "0.5.0"
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ build-backend = "setuptools.build_meta"
line-length = 119
target-version = ["py310"]

[tool.towncrier]
package = "ckeditor_filebrowser_filer"
directory = "changes"
filename = "HISTORY.rst"
title_format = "{version} ({project_date})"

[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
Expand Down Expand Up @@ -47,7 +53,7 @@ commit = true
message = "Release {new_version}"
commit_args = "--no-verify"
tag = false
current_version = "0.5.0.dev1"
current_version = "0.5.0"
parse = """(?x)
(?P<major>[0-9]+)
\\.(?P<minor>[0-9]+)
Expand Down

0 comments on commit 0ab92be

Please sign in to comment.