From c01a09f8fa698befdc83ff45564cf5e96121f474 Mon Sep 17 00:00:00 2001 From: Abneesh Singh Date: Sat, 18 Jul 2026 04:18:15 +0530 Subject: [PATCH] release: v10.2.0 Bundles the Kotlin/Android production-hardening line (compiler-verified APK path, console/JVM transpile target, runtime extraction) with the reliability & transpiler-fidelity phases (#86-#91): silent-error elimination, JS/Python correct-or-loud transpilation, VM<->interpreter parity gate, and wider builtin coverage. Full detail in CHANGELOG [10.2.0]. - epl/__init__.py: 10.1.2 -> 10.2.0 - CHANGELOG: [Unreleased] cut to dated [10.2.0] - README/docs: version strings synced --- CHANGELOG.md | 2 ++ epl/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a37a27..5bcdf16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](https://semver.org/) and [Keep a C ## [Unreleased] +## [10.2.0] — 2026-07-18 + ### Changed — Kotlin runtime extracted to a single source of truth (+ console/JVM target) The inline `EPLRuntime` Kotlin shim moved out of `kotlin_gen.py` into diff --git a/epl/__init__.py b/epl/__init__.py index cd7914e..084d52d 100644 --- a/epl/__init__.py +++ b/epl/__init__.py @@ -28,7 +28,7 @@ from importlib import import_module from typing import TYPE_CHECKING, Any -__version__ = '10.1.2' +__version__ = '10.2.0' __author__ = 'Abneesh Singh' __email__ = 'singhabneesh250@gmail.com' __license__ = 'Apache 2.0'