You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Please refer to the [full documentation](https://django-typer.readthedocs.io/) f
34
34
35
35
## 🚨 Upgrade Notice
36
36
37
-
**There are breaking changes between 2.x and 3.x, mostly involving shell tab completion. [See the changelog for migration steps]()**.
37
+
**There are breaking changes between 2.x and 3.x, mostly involving shell tab completion. [See the changelog for migration steps](https://django-typer.readthedocs.io/en/latest/changelog.html#migrating-from-2-x-to-3-x)**.
Copy file name to clipboardExpand all lines: doc/source/changelog.rst
+5-8Lines changed: 5 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
Change Log
5
5
==========
6
6
7
-
v3.0.0 (202X-XX-XX)
7
+
v3.0.0 (2024-02-16)
8
8
===================
9
9
10
10
* Implemented `Completer for media files. <https://github.com/django-commons/django-typer/issues/175>`_
@@ -13,8 +13,8 @@ v3.0.0 (202X-XX-XX)
13
13
* Implemented `Add print_return class field to enable/disable result printing <https://github.com/django-commons/django-typer/issues/167>`_
14
14
* BREAKING `Default rich traceback should not show locals - its too much information. <https://github.com/django-commons/django-typer/issues/166>`_
15
15
* Implemented `path completers should be configurable with a root directory other than cwd <https://github.com/django-commons/django-typer/issues/165>`_
16
-
* Implemented `Migrate pyproject.toml to poetry 2 and portable project specifiers. <https://github.com/django-commons/django-typer/issues/164>_`
17
-
* BREAKING `Split parsers.py and completers.py into submodules. <https://github.com/django-commons/django-typer/issues/163>_`
16
+
* Implemented `Migrate pyproject.toml to poetry 2 and portable project specifiers. <https://github.com/django-commons/django-typer/issues/164>`_
17
+
* BREAKING `Split parsers.py and completers.py into submodules. <https://github.com/django-commons/django-typer/issues/163>`_
18
18
* Implemented `Model completer/parser should support returning the field value <https://github.com/django-commons/django-typer/issues/162>`_
19
19
* Fixed `Model objects with null lookup fields should not be included in model field completion output <https://github.com/django-commons/django-typer/issues/160>`_
20
20
* Implemented `Add a performance regression. <https://github.com/django-commons/django-typer/issues/157>`_
@@ -46,8 +46,8 @@ v3.0.0 (202X-XX-XX)
46
46
Migrating from 2.x to 3.x
47
47
-------------------------
48
48
49
-
* Imports from the django_typer namespace have been removed. You should now import from
50
-
django_typer.management.
49
+
* Imports from the ``django_typer`` namespace have been removed. You should now import from
50
+
``django_typer.management``.
51
51
52
52
* The `name` parameter has been removed from
53
53
:func:`django_typer.management.initialize()` and :func:`django_typer.management.Typer.callback()`.
@@ -99,9 +99,6 @@ Shell Completions
99
99
the `shellcompletion install` command. To be extra safe you may want to uninstall the old
100
100
scripts before updating, using the v2.x ``shellcompletion remove`` command.
101
101
102
-
* If you are using shell tab completions you will need to reinstall the completion scripts. using
103
-
the `shellcompletion install` command.
104
-
105
102
* The interface to shellcompletion has changed. ``--shell`` is now an initialization option and
0 commit comments