From c1600f00bd4ffbc401523c25509d447f97d9ad8e Mon Sep 17 00:00:00 2001 From: Dustin Washington Date: Thu, 27 Nov 2025 21:03:35 -0500 Subject: [PATCH 1/2] Bump Version --- aider/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/__init__.py b/aider/__init__.py index 4c3f26c50bc..178b19751ad 100644 --- a/aider/__init__.py +++ b/aider/__init__.py @@ -1,6 +1,6 @@ from packaging import version -__version__ = "0.88.31.dev" +__version__ = "0.88.32.dev" safe_version = __version__ try: From 06740fa48bdfe6cdc7216f5568887ef23cac4b24 Mon Sep 17 00:00:00 2001 From: Dustin Washington Date: Thu, 27 Nov 2025 21:04:22 -0500 Subject: [PATCH 2/2] #198: Chunk ordering should just always be set --- aider/coders/chat_chunks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aider/coders/chat_chunks.py b/aider/coders/chat_chunks.py index da5557f4ba3..31c34035a01 100644 --- a/aider/coders/chat_chunks.py +++ b/aider/coders/chat_chunks.py @@ -15,8 +15,7 @@ class ChatChunks: chunk_ordering: List = field(default_factory=list) def __init__(self, chunk_ordering=None): - if chunk_ordering is not None: - self.chunk_ordering = chunk_ordering + self.chunk_ordering = chunk_ordering def all_messages(self): if self.chunk_ordering: