From 7af3b248810a77cc6110fbbc81f5c71481b1ab3c Mon Sep 17 00:00:00 2001 From: Sebastian Werner Date: Mon, 19 Jan 2026 10:52:05 +0100 Subject: [PATCH] chore: release --- .release-please-manifest.json | 4 ++-- packages/python2ts/CHANGELOG.md | 21 +++++++++++++++++++++ packages/python2ts/package.json | 2 +- packages/pythonlib/CHANGELOG.md | 21 +++++++++++++++++++++ packages/pythonlib/package.json | 2 +- 5 files changed, 46 insertions(+), 4 deletions(-) create mode 100644 packages/python2ts/CHANGELOG.md create mode 100644 packages/pythonlib/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8c54cda..a729403 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/pythonlib": "0.1.0", - "packages/python2ts": "0.1.0" + "packages/pythonlib": "0.2.0", + "packages/python2ts": "0.2.0" } diff --git a/packages/python2ts/CHANGELOG.md b/packages/python2ts/CHANGELOG.md new file mode 100644 index 0000000..a508ba1 --- /dev/null +++ b/packages/python2ts/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog + +## [0.2.0](https://github.com/sebastian-software/python2ts/compare/python2ts-v0.1.0...python2ts-v0.2.0) (2026-01-19) + + +### ⚠ BREAKING CHANGES + +* All snake_case function names are now camelCase +* Project restructured as monorepo + +### Features + +* **docs:** add logos, acknowledgments, simplify READMEs ([cb2ce3f](https://github.com/sebastian-software/python2ts/commit/cb2ce3fb5a5c81bec2689ebb81e2469c344da884)) +* implement subpath exports architecture (ADR-0009, ADR-0010) ([33415e1](https://github.com/sebastian-software/python2ts/commit/33415e10f8d44f9c169d3ae8d58bdf7db5baf45b)) +* migrate pythonlib API to camelCase naming convention ([5052071](https://github.com/sebastian-software/python2ts/commit/5052071cb1d979dd8b37651099de0bd08430df21)) +* restructure as pnpm monorepo with Docusaurus docs ([94f44ea](https://github.com/sebastian-software/python2ts/commit/94f44ea0e9cf7bc3c86b802c58c5285f20cc4a19)) + + +### Bug Fixes + +* exclude prettier from bundle, add as dependency ([b2d85d7](https://github.com/sebastian-software/python2ts/commit/b2d85d72b6f73382c3217f0307e47e9e392b0f59)) diff --git a/packages/python2ts/package.json b/packages/python2ts/package.json index 01c80d4..b6a45fb 100644 --- a/packages/python2ts/package.json +++ b/packages/python2ts/package.json @@ -1,6 +1,6 @@ { "name": "python2ts", - "version": "0.1.0", + "version": "0.2.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 new file mode 100644 index 0000000..caf4813 --- /dev/null +++ b/packages/pythonlib/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog + +## [0.2.0](https://github.com/sebastian-software/python2ts/compare/pythonlib-v0.1.0...pythonlib-v0.2.0) (2026-01-19) + + +### ⚠ BREAKING CHANGES + +* All snake_case function names are now camelCase +* Project restructured as monorepo + +### Features + +* **docs:** add logos, acknowledgments, simplify READMEs ([cb2ce3f](https://github.com/sebastian-software/python2ts/commit/cb2ce3fb5a5c81bec2689ebb81e2469c344da884)) +* implement subpath exports architecture (ADR-0009, ADR-0010) ([33415e1](https://github.com/sebastian-software/python2ts/commit/33415e10f8d44f9c169d3ae8d58bdf7db5baf45b)) +* migrate pythonlib API to camelCase naming convention ([5052071](https://github.com/sebastian-software/python2ts/commit/5052071cb1d979dd8b37651099de0bd08430df21)) +* restructure as pnpm monorepo with Docusaurus docs ([94f44ea](https://github.com/sebastian-software/python2ts/commit/94f44ea0e9cf7bc3c86b802c58c5285f20cc4a19)) + + +### Bug Fixes + +* update tests for new direct import structure ([fe00e8e](https://github.com/sebastian-software/python2ts/commit/fe00e8e2f24895209d88f33c1a7056f98e51371c)) diff --git a/packages/pythonlib/package.json b/packages/pythonlib/package.json index 491c1cc..566e3bf 100644 --- a/packages/pythonlib/package.json +++ b/packages/pythonlib/package.json @@ -1,6 +1,6 @@ { "name": "pythonlib", - "version": "0.1.0", + "version": "0.2.0", "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": {