chore: release v0.3.1 — Windows compatibility, write timeout, Ollama fix#48
Merged
Conversation
- Bump version to 0.3.1 across manifest.yaml and pyproject.toml - Update CHANGELOG and README with v0.3.1 release notes Changes included (from PRs #46 and #47 by sususweet): - Fix psycopg3 connection errors on Windows (gevent/ProactorEventLoop conflict) - Add WindowsSelectorEventLoopPolicy on win32 at plugin startup - Conditional psycopg deps: psycopg3 on Linux/macOS, psycopg2 on Windows - Raise WRITE_OPERATION_TIMEOUT 15s → 45s to reduce silent write failures - Add missing ollama dependency to pyproject.toml Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Version bump to v0.3.1, incorporating community fixes from PRs #46 and #47 (both by @sususweet).
Changes
sending query failed: another command is already in progresserror on Windows debugging environments caused by gevent's selector conflicting withProactorEventLoop. Addedasyncio.WindowsSelectorEventLoopPolicy()onwin32at startup. Made psycopg installation platform-conditional: psycopg3 on Linux/macOS (production), psycopg2 on Windows (local debugging).WRITE_OPERATION_TIMEOUTfrom 15 s to 45 s. Write operations include an LLM inference step that can exceed 15 s on slower providers, causing silent background write failures in async mode.ollamapackage topyproject.tomlso the credential validation screen no longer hangs when Ollama is selected as the LLM provider.Files Changed
manifest.yamlversion: 0.3.0→0.3.1pyproject.tomlversion = "0.3.0"→"0.3.1"CHANGELOG.mdREADME.mdTest plan
.difypkgMade with Cursor