From 04fc1f0f1dcb430b64d58d66ccc2feae3e99a873 Mon Sep 17 00:00:00 2001 From: Arnav Bajaj <49639514+Jackhammer9@users.noreply.github.com> Date: Sat, 8 Nov 2025 15:53:02 +0100 Subject: [PATCH] Reduino 1.1.0 Release --- pyproject.toml | 2 +- src/Reduino/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index daeba6f..e4a8d99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Reduino" -version = "1.0.0" +version = "1.1.0" description = "Reduino transpiles Python scripts into efficient Arduino C++ and uploads automatically. A simple, intuitive way to control sensors, LEDs, and actuators without touching C++." readme = "README.md" requires-python = ">=3.10" diff --git a/src/Reduino/__init__.py b/src/Reduino/__init__.py index df7d3be..3a5c325 100644 --- a/src/Reduino/__init__.py +++ b/src/Reduino/__init__.py @@ -3,7 +3,7 @@ """User-facing helpers for the Reduino transpiler package.""" __all__ = ["target"] -__version__ = "1.0.0" +__version__ = "1.1.0" import pathlib import sys