branch: elpa/aidermacs commit 9eef7a26e50669b5fea16ede7bbf9a11848dba4d Author: Mingde (Matthew) Zeng <matthew...@posteo.net> Commit: Mingde (Matthew) Zeng <matthew...@posteo.net>
Bump to v1.3 Signed-off-by: Mingde (Matthew) Zeng <matthew...@posteo.net> --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ aidermacs-backend-comint.el | 2 +- aidermacs-backend-vterm.el | 2 +- aidermacs-backends.el | 2 +- aidermacs-models.el | 2 +- aidermacs-output.el | 2 +- aidermacs.el | 2 +- 7 files changed, 41 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e2020410d..4672e6c526 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # CHANGELOG +# Aidermacs 1.3 + +## What's Changed +* Fix the part about the "AI" comments in the README.md by @Martinsos in https://github.com/MatthewZMD/aidermacs/pull/106 +* aidermacs--form-prompt: Always use prompt-prefix and context. by @thanhvg in https://github.com/MatthewZMD/aidermacs/pull/108 +* Use `display-warning` when warning user about font-lock position by @benthamite in https://github.com/MatthewZMD/aidermacs/pull/113 +* Fix aidermacs typos by @Dima-369 in https://github.com/MatthewZMD/aidermacs/pull/114 +* feat: add web content fetching function to aidermacs by @ArthurHeymans in https://github.com/MatthewZMD/aidermacs/pull/115 +* feat: add auto-commit command to Magit transient menu by @ArthurHeymans in https://github.com/MatthewZMD/aidermacs/pull/116 +* Change syntax highlighting to use a state based approach by @CeleritasCelery in https://github.com/MatthewZMD/aidermacs/pull/118 +* Add markdown formatting to the aider session by @CeleritasCelery in https://github.com/MatthewZMD/aidermacs/pull/119 + +## New Contributors +* @Martinsos made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/106 +* @thanhvg made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/108 +* @benthamite made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/113 +* @Dima-369 made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/114 + +**Full Changelog**: https://github.com/MatthewZMD/aidermacs/compare/v1.2...v1.3 + +# Aidermacs 1.2 + +## What's Changed +* Use uv install aider. by @manateelazycat in https://github.com/MatthewZMD/aidermacs/pull/89 +* Doc : fix uv aider proxy error by @ymfsing in https://github.com/MatthewZMD/aidermacs/pull/90 +* Fix model inheritance to dynamically use default model values by @u-yuta in https://github.com/MatthewZMD/aidermacs/pull/91 +* Handle errors in insert hooks by @CeleritasCelery in https://github.com/MatthewZMD/aidermacs/pull/95 +* readme: add spacemacs example by @paralin in https://github.com/MatthewZMD/aidermacs/pull/100 +* readme: add back steps 4 and 5 to getting started by @paralin in https://github.com/MatthewZMD/aidermacs/pull/101 + +## New Contributors +* @manateelazycat made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/89 +* @ymfsing made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/90 +* @paralin made their first contribution in https://github.com/MatthewZMD/aidermacs/pull/100 + # Aidermacs 1.1 **What's New in Aidermacs 1.1?** diff --git a/aidermacs-backend-comint.el b/aidermacs-backend-comint.el index 528ba13d7a..7968c51d7e 100644 --- a/aidermacs-backend-comint.el +++ b/aidermacs-backend-comint.el @@ -1,6 +1,6 @@ ;;; aidermacs-backend-comint.el --- Comint backend for aidermacs -*- lexical-binding: t; -*- ;; Author: Mingde (Matthew) Zeng <matthew...@posteo.net> -;; Version: 1.1 +;; Version: 1.3 ;; Keywords: ai emacs llm aider ai-pair-programming tools ;; URL: https://github.com/MatthewZMD/aidermacs ;; SPDX-License-Identifier: Apache-2.0 diff --git a/aidermacs-backend-vterm.el b/aidermacs-backend-vterm.el index a947918c55..a7dbc53f5b 100644 --- a/aidermacs-backend-vterm.el +++ b/aidermacs-backend-vterm.el @@ -1,6 +1,6 @@ ;;; aidermacs-backend-vterm.el --- VTerm backend for aidermacs -*- lexical-binding: t; -*- ;; Author: Mingde (Matthew) Zeng <matthew...@posteo.net> -;; Version: 1.1 +;; Version: 1.3 ;; Keywords: ai emacs llm aider ai-pair-programming tools ;; URL: https://github.com/MatthewZMD/aidermacs ;; SPDX-License-Identifier: Apache-2.0 diff --git a/aidermacs-backends.el b/aidermacs-backends.el index 55c09735a4..8fb6ba5900 100644 --- a/aidermacs-backends.el +++ b/aidermacs-backends.el @@ -1,6 +1,6 @@ ;;; aidermacs-backends.el --- Backend dispatcher for aidermacs -*- lexical-binding: t; -*- ;; Author: Mingde (Matthew) Zeng <matthew...@posteo.net> -;; Version: 1.1 +;; Version: 1.3 ;; Keywords: ai emacs llm aider ai-pair-programming tools ;; URL: https://github.com/MatthewZMD/aidermacs ;; SPDX-License-Identifier: Apache-2.0 diff --git a/aidermacs-models.el b/aidermacs-models.el index d3c99fce3c..8ee8ce6d0e 100644 --- a/aidermacs-models.el +++ b/aidermacs-models.el @@ -1,6 +1,6 @@ ;;; aidermacs-models.el --- Model selection for aidermacs -*- lexical-binding: t; -*- ;; Author: Mingde (Matthew) Zeng <matthew...@posteo.net> -;; Version: 1.1 +;; Version: 1.3 ;; Keywords: ai emacs llm aider ai-pair-programming tools ;; URL: https://github.com/MatthewZMD/aidermacs ;; SPDX-License-Identifier: Apache-2.0 diff --git a/aidermacs-output.el b/aidermacs-output.el index d993e15c66..b57462a748 100644 --- a/aidermacs-output.el +++ b/aidermacs-output.el @@ -1,6 +1,6 @@ ;;; aidermacs-output.el --- Output manipulation for Aidermacs -*- lexical-binding: t; -*- ;; Author: Mingde (Matthew) Zeng <matthew...@posteo.net> -;; Version: 1.1 +;; Version: 1.3 ;; Keywords: ai emacs llm aider ai-pair-programming tools ;; URL: https://github.com/MatthewZMD/aidermacs ;; SPDX-License-Identifier: Apache-2.0 diff --git a/aidermacs.el b/aidermacs.el index 67a1b386e0..ad7a59fb01 100644 --- a/aidermacs.el +++ b/aidermacs.el @@ -1,6 +1,6 @@ ;;; aidermacs.el --- AI pair programming with Aider -*- lexical-binding: t; -*- ;; Author: Mingde (Matthew) Zeng <matthew...@posteo.net> -;; Version: 1.1 +;; Version: 1.3 ;; Package-Requires: ((emacs "26.1") (transient "0.3.0") (compat "30.0.2.0") (markdown-mode "2.7")) ;; Keywords: ai emacs llm aider ai-pair-programming tools ;; URL: https://github.com/MatthewZMD/aidermacs