From 9993564f163348b6aa4e03f295c0247bd5426ebc Mon Sep 17 00:00:00 2001 From: Michaelyin Date: Thu, 11 Jan 2024 10:38:37 +0800 Subject: [PATCH] update doc --- CHANGELOG.md | 2 +- docs/source/conf.py | 2 +- docs/source/index.rst | 2 +- docs/source/install.md | 2 +- pyproject.toml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08c6cb1..29b2179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,7 +58,7 @@ Use file-based templates for rendering streams/frames ## [0.0.39] - 2021-4-2 -Fix for https://github.com/rails-inspire-django/django-turbo-response/issues/5 +Fix for https://github.com/rails-inspire-django/django-turbo-helper/issues/5 ## [0.0.36] - 2021-3-30 diff --git a/docs/source/conf.py b/docs/source/conf.py index d7e863e..8b89d72 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ # -- Project information ----------------------------------------------------- -project = "django-turbo-response" +project = "django-turbo-helper" copyright = f"{datetime.datetime.now().year}, Michael Yin" author = "Michael Yin" diff --git a/docs/source/index.rst b/docs/source/index.rst index 39800e0..0813dbc 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,4 +1,4 @@ -django-turbo-response +django-turbo-helper ===================== This package provides helpers for server-side rendering of *Turbo Frame* and *Turbo Stream*, which aim to work with the `Hotwire `_ project. diff --git a/docs/source/install.md b/docs/source/install.md index 8e0f9dc..d140ab5 100644 --- a/docs/source/install.md +++ b/docs/source/install.md @@ -7,7 +7,7 @@ This library requires Python 3.8+ and Django 3.2+. ## Getting Started ```shell -pip install django-turbo-response +pip install django-turbo-helper ``` Next update **INSTALLED_APPS**: diff --git a/pyproject.toml b/pyproject.toml index fdd3730..4f7302f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ version = "2.0.0" description = "Hotwired/Turbo response helpers for Django" authors = ["Michael Yin "] license = "MIT" -homepage = "https://github.com/rails-inspire-django/django-turbo-response" +homepage = "https://github.com/rails-inspire-django/django-turbo-helper" readme = "README.md" packages = [{ include = "turbo_helper", from = "src" }] [tool.poetry.urls] -Changelog = "https://github.com/rails-inspire-django/django-turbo-response/releases" +Changelog = "https://github.com/rails-inspire-django/django-turbo-helper/releases" [tool.poetry.dependencies] python = ">=3.8"