Skip to content

Commit 9069fd0

Browse files
committed
bump version to 0.3.13
1 parent 549f24c commit 9069fd0

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.13] — 2026-07-14
9+
10+
### Fixed
11+
- `Points` SQLite connection now allows cross-thread access (`check_same_thread=False`) — enables calling `move_to()` from background threads without `ProgrammingError`
12+
813
## [0.3.12] — 2026-07-10
914

1015
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "urkit"
7-
version = "0.3.12"
7+
version = "0.3.13"
88
description = "Universal Robots e-Series control toolkit built on ur_rtde"
99
readme = "README.md"
1010
license = {text = "MIT"}

src/urkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
from __future__ import annotations
2626

27-
__version__ = "0.3.12"
27+
__version__ = "0.3.13"
2828

2929
from urkit.config import load_config, resolve_config
3030
from urkit.exceptions import (

src/urkit/points.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(self, path: str | Path) -> None:
119119
else:
120120
self._path = Path(path).resolve()
121121
self._path.parent.mkdir(parents=True, exist_ok=True)
122-
self._conn = sqlite3.connect(str(self._path))
122+
self._conn = sqlite3.connect(str(self._path), check_same_thread=False)
123123
_init_db(self._conn)
124124

125125
def _close(self) -> None:

0 commit comments

Comments
 (0)