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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.1.6] - 2026-04-01

### Highlights

- Session secrets API for managing secrets within sessions
- Connections API for managing external service connections
- Dependency upgrades across all SDKs

### What's Changed

* feat(rust,python,typescript): add session secrets API ([#69](https://github.com/everruns/sdk/pull/69)) by @mchalyi
* feat(rust,python,typescript): add connections API ([#68](https://github.com/everruns/sdk/pull/68)) by @mchalyi
* chore(rust,python,typescript): upgrade dependencies across all SDKs ([#70](https://github.com/everruns/sdk/pull/70)) by @mchalyi

**Full Changelog**: https://github.com/everruns/sdk/compare/v0.1.5...v0.1.6

## [0.1.5] - 2026-03-21

### Highlights
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "everruns-sdk"
version = "0.1.5"
version = "0.1.6"
description = "Python SDK for Everruns API"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "everruns-sdk"
version = "0.1.5"
version = "0.1.6"
edition = "2024"
description = "Rust SDK for Everruns API"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@everruns/sdk",
"version": "0.1.5",
"version": "0.1.6",
"description": "TypeScript SDK for Everruns API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading