From 088e53fe61aa75c08fc01b2f88e87da332f148b8 Mon Sep 17 00:00:00 2001 From: benedettoleto Date: Tue, 21 Apr 2026 16:13:48 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=201.0.0=20=E2=86=92=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.toml | 2 +- codemeta.json | 8 ++++---- docs/conf.py | 2 +- pyproject.toml | 2 +- spikify/version.py | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index b664d15..54479cf 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -3,7 +3,7 @@ parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] regex = false -current_version = "1.0.0" +current_version = "1.1.0" ignore_missing_version = false search = "{current_version}" replace = "{new_version}" diff --git a/codemeta.json b/codemeta.json index 04686cb..6e78d28 100644 --- a/codemeta.json +++ b/codemeta.json @@ -61,8 +61,8 @@ "givenName": "Benedetto" }, "dateCreated": "2025-04-11", - "dateModified": "2026-04-14", - "datePublished": "2026-04-14", + "dateModified": "2026-04-21", + "datePublished": "2026-04-21", "description": "A Python package to convert your data into spike-based signals for efficient and biologically-inspired spiking neural network applications, enabling faster and more energy-efficient computations.", "funder": { "type": "Organization", @@ -83,12 +83,12 @@ ], "programmingLanguage": "Python", "runtimePlatform": "Miniconda", - "version": "1.0.0", + "version": "1.1.0", "developmentStatus": "active", "funding": "Project IR0000011, CUP B51E22000150006, EBRAINS-Italy", "isSourceCodeOf": "inNuCE Lab", "issueTracker": "https://github.com/neuromorphic-polito/spikify/issues", "referencePublication": "https://doi.org/10.3389/fnins.2022.999029", - "downloadUrl": "https://github.com/neuromorphic-polito/spikify/releases/tag/1.0.0" + "downloadUrl": "https://github.com/neuromorphic-polito/spikify/releases/tag/1.1.0" } \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index a620e98..ec23fe4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ now = datetime.datetime.now() author = "Benedetto Leto, Gianvito Urgese, Vittorio Fra, Riccardo Pignari" copyright = f"{now.year}, {author}." -version = "1.0.0" +version = "1.1.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index fc3c4c0..851f3c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "innuce-spikify" -version = "1.0.0" +version = "1.1.0" description = "A Python package to convert signal data to spike trains" authors = ["Benedetto Leto ", "Gianvito Urgese ", "Vittorio Fra ", "Riccardo Pignari "] readme = "README_PYPI.md" diff --git a/spikify/version.py b/spikify/version.py index 5becc17..6849410 100644 --- a/spikify/version.py +++ b/spikify/version.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.1.0" From 942b389cf26c8b41fae1e5029bfb7f58b0dca7c1 Mon Sep 17 00:00:00 2001 From: benedettoleto Date: Tue, 21 Apr 2026 16:19:25 +0200 Subject: [PATCH 2/2] docs: update changelog --- docs/changelog.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index bca67e8..83fa2a0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,6 +8,19 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `__, and this project adheres to `Semantic Versioning `__. +1.1.0 +----- +:Released: 2026-04-21 +:Full Changelog: `1.0.0...1.1.0 `__ + +Improvements +............ +- Introduced decoding support for contrast-based and deconvolution-based encoders, enabling signal reconstruction workflows. +- Improved return format consistency by removing implicit flattening of outputs across decoding functions. +- Clarified argument order and improved API consistency in decoding-related functions. +- General documentation style improvements and cleanup. +- Removed unnecessary argument initializations to simplify internal logic. + 1.0.0 ----- :Released: 2026-04-14