Skip to content

Commit 1927a51

Browse files
committed
Correct image url
1 parent 8abb164 commit 1927a51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
![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)
5+
![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)
66

77
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).
88

django_range_merge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Enables the range_merge Aggregate for Django on Postgres
33
"""
44

5-
__version__ = "0.2.4"
5+
__version__ = "0.2.5"
66

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

0 commit comments

Comments
 (0)