Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .coverage
Binary file not shown.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Default owners for everything
* @patrick-chinchill
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Bug Report
about: Report a bug
labels: bug
---

**Adapter**: (e.g., Slack, Discord, Teams)
**Version**: (e.g., 0.0.1a3)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The version example in the bug report template should be updated to 0.0.1a4 to match the current release version, ensuring that users are encouraged to provide the most relevant version information.

Suggested change
**Version**: (e.g., 0.0.1a3)
**Version**: (e.g., 0.0.1a4)

**Python version**: (e.g., 3.12)

**What happened?**

**What did you expect?**

**Minimal reproduction**:
```python
# paste code here
```
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Feature Request
about: Suggest a feature
labels: enhancement
---

**What problem does this solve?**

**Proposed solution**:
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Changelog

## 0.0.1a3 (2026-04-06)
## 0.0.1a4 (2026-04-06)

Initial alpha release.

- Core SDK: Chat orchestrator, Thread, Channel, Message, Cards, Modals, Emoji
- 8 adapters: Slack, Discord, Teams, Telegram, WhatsApp, Google Chat, GitHub, Linear
- 3 state backends: Memory, Redis, PostgreSQL
- 2,467 tests passing
- 2,477 tests passing, 79% coverage
- Security hardened: JWT verification, SSRF protection, timing-safe comparisons
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Multi-platform async chat SDK for Python. Port of [Vercel Chat](https://github.com/vercel/chat).

> **Status: Alpha (0.0.1a3)** — API may change. Not yet tested in production.
> **Status: Alpha (0.0.1a4)** — API may change. Not yet tested in production.

## Why chat-sdk?

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "chat-sdk"
version = "0.0.1a3"
version = "0.0.1a4"
description = "Multi-platform async chat SDK for Python — port of Vercel Chat"
readme = "README.md"
license = {text = "MIT"}
Expand Down
Loading