Skip to content

Commit 07a8046

Browse files
committed
Consistent wording
1 parent eaa8eb6 commit 07a8046

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pkg-py/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changes
1111

1212
* The entire functional API (i.e., `init()`, `sidebar()`, `server()`, etc) has been deprecated in favor of a new class/OOP API. Namely, the new `QueryChat()` class is now the recommended way to start (instead of `init()`), which has methods to replace old functions (e.g., `.sidebar()`, `.server()`, etc). (#101)
13-
* The `create_chat_callback` parameter of `init()` was removed. (#101)
13+
* The previously deprecated `create_chat_callback` parameter of `init()` was removed. (#101)
1414
* `querychat.querychat.QueryChat` was renamed to `querychat.querychat.QueriedValues`. (#101)
1515

1616
## [UNRELEASED]

pkg-py/src/querychat/_deprecated.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ def init(
4040
4141
.. deprecated:: 0.3.0
4242
Use :class:`QueryChat` instead. This function will be removed in
43-
version 1.0.
43+
a future release.
4444
4545
Warning:
4646
-------
47-
This function is deprecated and will be removed in querychat 1.0.
47+
This function is deprecated and will be removed in a future release.
4848
Use ``QueryChat()`` instead.
4949
5050
"""
5151
warn_deprecated(
52-
"init() is deprecated and will be removed in querychat 1.0. "
52+
"init() is deprecated and will be removed in a future release. "
5353
"Use QueryChat() instead."
5454
)
5555
return _init_impl(
@@ -151,16 +151,16 @@ def system_prompt(
151151
152152
.. deprecated:: 0.3.0
153153
Use :meth:`QueryChat.set_system_prompt` instead. This function will be
154-
removed in version 1.0.
154+
removed in a future release.
155155
156156
Warning:
157157
-------
158-
This function is deprecated and will be removed in querychat 1.0.
158+
This function is deprecated and will be removed in a future release.
159159
Use ``QueryChat.set_system_prompt()`` instead.
160160
161161
"""
162162
warnings.warn(
163-
"system_prompt() is deprecated and will be removed in querychat 1.0. "
163+
"system_prompt() is deprecated and will be removed in a future release. "
164164
"Use QueryChat.set_system_prompt() instead.",
165165
FutureWarning,
166166
stacklevel=2,

0 commit comments

Comments
 (0)