Skip to content

Commit

Permalink
Correct image url
Browse files Browse the repository at this point in the history
  • Loading branch information
jacklinke committed Oct 9, 2022
1 parent 8abb164 commit 1927a51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Enables the `range_merge` Aggregate for Django on Postgres. `range_merge` "Computes the smallest range that includes ... the given ranges".

![Visualization of what range_merge does, returning smallest range that includes input ranges in the QuerySet](https://github.com/jacklinke/django-range-merge/media/range_merge.png)
![Visualization of what range_merge does, returning smallest range that includes input ranges in the QuerySet](https://raw.githubusercontent.com/jacklinke/django-range-merge/main/media/range_merge.png)

This package should only be used with Django projects using the Postgres database. See [Postgres docs on Range Functions](https://www.postgresql.org/docs/14/functions-range.html#RANGE-FUNCTIONS-TABLE).

Expand Down
2 changes: 1 addition & 1 deletion django_range_merge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Enables the range_merge Aggregate for Django on Postgres
"""

__version__ = "0.2.4"
__version__ = "0.2.5"

default_app_config = "django_range_merge.apps.DjangoRangeMergeConfig" # pylint: disable=invalid-name

0 comments on commit 1927a51

Please sign in to comment.