diff --git a/HISTORY.md b/HISTORY.md index 40758404a..39f2f9146 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,8 +1,9 @@ # Release history -### main branch on GitHub +### v0.10.1 - /add and /drop always use paths relative to the git root +- Encourage GPT to use language like "add files to the chat" to ask users for permission to edit them. ### v0.10.0 diff --git a/aider/__init__.py b/aider/__init__.py index 688f876d6..e22169f8a 100644 --- a/aider/__init__.py +++ b/aider/__init__.py @@ -1 +1 @@ -__version__ = "0.10.1-dev" +__version__ = "0.10.2-dev" diff --git a/scripts/versionbump.py b/scripts/versionbump.py index 52ba19173..67e1a0b2f 100644 --- a/scripts/versionbump.py +++ b/scripts/versionbump.py @@ -26,7 +26,7 @@ def main(): with open("aider/__init__.py", "r") as f: content = f.read() - current_version = re.search(r'__version__ = "(.+?)"', content).group(1).split("-dev")[0] + current_version = re.search(r'__version__ = "(.+?)"', content).group(1) if new_version <= version.parse(current_version): raise ValueError( f"New version {new_version} must be greater than the current version {current_version}"