diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b45f58..e534c49 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/pythonlib": "2.0.1", - "packages/python2ts": "1.3.1" + "packages/pythonlib": "2.0.2", + "packages/python2ts": "1.3.2" } diff --git a/packages/python2ts/CHANGELOG.md b/packages/python2ts/CHANGELOG.md index 9a5fa03..cbadadf 100644 --- a/packages/python2ts/CHANGELOG.md +++ b/packages/python2ts/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.3.2](https://github.com/sebastian-software/python2ts/compare/python2ts-v1.3.1...python2ts-v1.3.2) (2026-01-21) + + +### Bug Fixes + +* **docstrings:** handle module-level and decorated function docstrings ([f8f53f0](https://github.com/sebastian-software/python2ts/commit/f8f53f0ac7f3d171f25e72eaf718e7e8b76126d0)) +* isinstance with tuple of types now transpiles to array ([284d802](https://github.com/sebastian-software/python2ts/commit/284d802c81e5d10769325dbc16be402b635707a7)), closes [#26](https://github.com/sebastian-software/python2ts/issues/26) + ## [1.3.1](https://github.com/sebastian-software/python2ts/compare/python2ts-v1.3.0...python2ts-v1.3.1) (2026-01-21) diff --git a/packages/python2ts/package.json b/packages/python2ts/package.json index 82711df..e456f0a 100644 --- a/packages/python2ts/package.json +++ b/packages/python2ts/package.json @@ -1,6 +1,6 @@ { "name": "python2ts", - "version": "1.3.1", + "version": "1.3.2", "description": "AST-based Python to TypeScript transpiler. Convert Python code to clean, idiomatic TypeScript with full type preservation.", "homepage": "https://sebastian-software.github.io/python2ts/", "repository": { diff --git a/packages/pythonlib/CHANGELOG.md b/packages/pythonlib/CHANGELOG.md index 2a4b97a..3938833 100644 --- a/packages/pythonlib/CHANGELOG.md +++ b/packages/pythonlib/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.2](https://github.com/sebastian-software/python2ts/compare/pythonlib-v2.0.1...pythonlib-v2.0.2) (2026-01-21) + + +### Bug Fixes + +* isinstance with tuple of types now transpiles to array ([284d802](https://github.com/sebastian-software/python2ts/commit/284d802c81e5d10769325dbc16be402b635707a7)), closes [#26](https://github.com/sebastian-software/python2ts/issues/26) + ## [2.0.1](https://github.com/sebastian-software/python2ts/compare/pythonlib-v2.0.0...pythonlib-v2.0.1) (2026-01-21) diff --git a/packages/pythonlib/package.json b/packages/pythonlib/package.json index fc8e5eb..decccd8 100644 --- a/packages/pythonlib/package.json +++ b/packages/pythonlib/package.json @@ -1,6 +1,6 @@ { "name": "pythonlib", - "version": "2.0.1", + "version": "2.0.2", "description": "Python standard library for TypeScript - itertools, functools, collections, datetime, re, and more. Zero dependencies. Full TypeScript support.", "homepage": "https://sebastian-software.github.io/python2ts/", "repository": {