Skip to content

Commit

Permalink
Bugfix Django 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Normand committed Jun 25, 2024
1 parent c594591 commit 1790d5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
django-ok-likes-latest
==============================

``django-ok-likes-latest`` is a liking app for Django, which allows users "like" and "unlike" any model instance. All functionality provides through `django-rest-framework`_ API views. Template tags and jinja's global functions provide the ability to see who liked an object, which objects were liked by current user and count of likes for a given object. And is compatible with Djnago 5.0
``django-ok-likes-latest`` is a liking app for Django, which allows users "like" and "unlike" any model instance. All functionality provides through `django-rest-framework`_ API views. Template tags and jinja's global functions provide the ability to see who liked an object, which objects were liked by current user and count of likes for a given object. And is compatible with Django 5.0

Installation
============
Expand Down
2 changes: 1 addition & 1 deletion likes/api/fields.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.apps import apps
from django.contrib.contenttypes.models import ContentType
from django.utils.module_loading import import_string
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

from rest_framework import serializers

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='django-ok-likes-latest',
version='0.8.0',
version='0.8.1',
description='Django likes app latest',
long_description='file: README.rst',
author='Abhishek Khanduri',
Expand Down

0 comments on commit 1790d5a

Please sign in to comment.