Skip to content

Commit

Permalink
update ci to include changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
renxida committed Oct 25, 2024
1 parent 10c8419 commit 2589b4c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
with:
tag_name: v${{ steps.version.outputs.new_version }}
release_name: Release ${{ steps.version.outputs.new_version }}
body_path: CHANGELOG.md
draft: false
prerelease: false

Expand All @@ -93,4 +94,4 @@ jobs:
run: |
echo "GitHub Ref: ${{ github.ref }}"
echo "GitHub Event Name: ${{ github.event_name }}"
echo "Release Tag: v${{ steps.version.outputs.new_version }}"
echo "Release Tag: v${{ steps.version.outputs.new_version }}"
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

## v0.3.0

### Core
- Refactored conversation history management into dedicated ConversationHistory class
- Fixed backtracking functionality to properly handle conversation state
- Removed OpenAI and Gemini chat implementations to focus on Anthropic/Claude
- Updated Claude model to sonnet-20241022

### UI/UX
- Added demo GIF to README
- Added FAQ section to documentation
- Improved error handling and state management

### Build
- Removed poetry.lock for better dependency flexibility
- Updated Python compatibility to >=3.8.1,<4.0
- Updated Textual to v0.83.0

## v0.2.0
Initial public release

## v0.1.1, v0.1.2
Early development versions

0 comments on commit 2589b4c

Please sign in to comment.