Skip to content

Commit

Permalink
Feature/release 1 2 0 (#261)
Browse files Browse the repository at this point in the history
* Update version number

* Add changelog

* Document support for Python 3.12

* Update Changelog

* Updated documentation for supported django-filter version

* Add supported Django versions in documentation
  • Loading branch information
ericziethen committed Dec 29, 2023
1 parent 2009e9d commit cca210d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0]
### Added
- N/A

### Changed
- Add support for Python 3.12 and Django 5 [#246]
- Fix crashig when related fields are Null [#255] [#256]

### Removed
- Testing Support for django-filter older than the latest, currently 23.5 [#246]


## [1.1.2]
### Added
- N/A
Expand All @@ -16,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add docker support to locally test with Postgres [#233]

### Removed
- Add support for Python 3.6 and Django 2.2 and 3.1 [#226]
- Support for Python 3.6 and Django 2.2 and 3.1 [#226]

## [1.1.1]
### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ For more details and examples check the [documentation](https://django-property-

## Requirements

* Python: 3.7, 3.8, 3.9, 3.10, 3.11
* Django: 3.2, 4.0, 4.1
* Django-filter: 2.3+
* Python: 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
* Django: 3.2, 4.0, 4.1, 5.0
* Django-filter: 23.5+

## Limitations

Expand Down
6 changes: 3 additions & 3 deletions docs/source/guide/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Installation
Requirements
------------

* **Python**: 3.7, 3.8, 3.9, 3.10, 3.11
* **Django**: 3.2, 4.0, 4.1
* **Django-filter**: 2.3+
* **Python**: 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
* **Django**: 3.2, 4.0, 4.1, 5.0
* **Django-filter**: 23.5+

Installation
------------
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = true

[metadata]
name = django-property-filter
version = 1.1.2
version = 1.2.0
author = Eric Ziethen
author_email = ericziethen@gmail.com
description = Django Filter extension to support filtering by Properties
Expand All @@ -21,13 +21,15 @@ classifiers =
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 5.0
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules

project_urls =
Expand Down

0 comments on commit cca210d

Please sign in to comment.