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'