diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 45ada0eba..d8788ca14 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -3,6 +3,11 @@ Changelog
In this changelog focus on user facing highlights and stick to the format. This information will be used to motivate users to upgrade or after upgrading to inform them of features that might otherwise not be very discoverable.
+`1.0.16 `__
+--------------------------------------------------
+
+- Always use the latest patch-level versions of Spice and Ragdaemon
+
`1.0.15 `__
--------------------------------------------------
diff --git a/mentat/VERSION b/mentat/VERSION
index a9707166b..b668c3b2c 100644
--- a/mentat/VERSION
+++ b/mentat/VERSION
@@ -1 +1 @@
-1.0.15
+1.0.16
diff --git a/tests/conftest.py b/tests/conftest.py
index 234e661f7..089295956 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -98,7 +98,7 @@ def mock_call_llm_api(mocker):
completion_mock = mocker.patch.object(LlmApiHandler, "call_llm_api")
def wrap_unstreamed_string(value):
- return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], False), value, 1, 0, 0, True, 1)
+ return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], False), value, 1, 0, 0, True, 1, None)
def wrap_streamed_strings(values):
class MockStreamingSpiceResponse:
@@ -115,7 +115,7 @@ async def __anext__(self):
return values[self.cur_value - 1]
def current_response(self):
- return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], True), "".join(values), 1, 0, 0, True, 1)
+ return SpiceResponse(SpiceCallArgs("gpt-3.5-turbo", [], True), "".join(values), 1, 0, 0, True, 1, None)
mock_spice_response = MockStreamingSpiceResponse()
return mock_spice_response