From 5eb65af1c31d0513c86287677b0063632e2ad44d Mon Sep 17 00:00:00 2001 From: Sebastian Werner Date: Tue, 20 Jan 2026 20:01:33 +0100 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 4 ++-- packages/python2ts/CHANGELOG.md | 13 +++++++++++++ packages/python2ts/package.json | 2 +- packages/pythonlib/CHANGELOG.md | 7 +++++++ packages/pythonlib/package.json | 2 +- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 39712f6..2812714 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/pythonlib": "1.0.0", - "packages/python2ts": "1.0.0" + "packages/pythonlib": "1.0.1", + "packages/python2ts": "1.1.0" } diff --git a/packages/python2ts/CHANGELOG.md b/packages/python2ts/CHANGELOG.md index 89a72fc..ab96a54 100644 --- a/packages/python2ts/CHANGELOG.md +++ b/packages/python2ts/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.1.0](https://github.com/sebastian-software/python2ts/compare/python2ts-v1.0.0...python2ts-v1.1.0) (2026-01-20) + + +### Features + +* add NumPy-style docstring parsing support ([fd54354](https://github.com/sebastian-software/python2ts/commit/fd54354bc5ac46e10359363869ddcd201a053cfa)), closes [#10](https://github.com/sebastian-software/python2ts/issues/10) +* convert keyword-only parameters (*) to options object ([720ddf5](https://github.com/sebastian-software/python2ts/commit/720ddf5a314b5da0a30a4614f69dec015bab3749)), closes [#13](https://github.com/sebastian-software/python2ts/issues/13) + + +### Bug Fixes + +* resolve 7 transpiler bugs from issue reports ([952fbe8](https://github.com/sebastian-software/python2ts/commit/952fbe8346e41eaf96246b63e15c9745f37ca4c0)) + ## [0.2.1](https://github.com/sebastian-software/python2ts/compare/python2ts-v0.2.0...python2ts-v0.2.1) (2026-01-19) diff --git a/packages/python2ts/package.json b/packages/python2ts/package.json index fc4b330..1a3cdd0 100644 --- a/packages/python2ts/package.json +++ b/packages/python2ts/package.json @@ -1,6 +1,6 @@ { "name": "python2ts", - "version": "1.0.0", + "version": "1.1.0", "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 800526b..d067a4c 100644 --- a/packages/pythonlib/CHANGELOG.md +++ b/packages/pythonlib/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.1](https://github.com/sebastian-software/python2ts/compare/pythonlib-v1.0.0...pythonlib-v1.0.1) (2026-01-20) + + +### Bug Fixes + +* resolve 7 transpiler bugs from issue reports ([952fbe8](https://github.com/sebastian-software/python2ts/commit/952fbe8346e41eaf96246b63e15c9745f37ca4c0)) + ## [0.2.1](https://github.com/sebastian-software/python2ts/compare/pythonlib-v0.2.0...pythonlib-v0.2.1) (2026-01-19) diff --git a/packages/pythonlib/package.json b/packages/pythonlib/package.json index cf1ab82..83df9f3 100644 --- a/packages/pythonlib/package.json +++ b/packages/pythonlib/package.json @@ -1,6 +1,6 @@ { "name": "pythonlib", - "version": "1.0.0", + "version": "1.0.1", "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": {