From 5ba1939817ab3715b3af40d3c4b3e219779fbbb9 Mon Sep 17 00:00:00 2001 From: Diego Martinez Date: Sat, 17 Feb 2024 13:27:33 +0100 Subject: [PATCH 1/3] Update readme.rst --- readme.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.rst b/readme.rst index 52dfdc8..27d1a98 100644 --- a/readme.rst +++ b/readme.rst @@ -2,9 +2,9 @@ Signal Edges ------------------------------------------------------------------------------------------------------------------------ **Signal Edges** is a Python package capable of filtering, extracting state levels and edges of signals with millions -of samples, among other things. It is specially suited for analysis of analog signals obtained through hardware -recorders such as oscilloscopes or data recorders and hardware automation in CI/CD environments, although it is -flexible enough to be used for many other different purposes. +of samples, among other things. It is specially suited for analysis of analog signals obtained through recorders, such +as oscilloscopes or data recorders, and hardware automation in CI/CD environments, although it is flexible enough to +be used for many other different purposes. .. figure:: https://github.com/dmg0345/python-signal-edges/blob/master/doc/.assets/img/007_example_complex_plot_1.png :align: center From a6a2289508ecd2ff1bb186045071baf71d21d1d4 Mon Sep 17 00:00:00 2001 From: Diego Martinez Date: Sat, 17 Feb 2024 14:18:37 +0100 Subject: [PATCH 2/3] Update conf.py --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index fbb1df9..5f385dc 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -45,7 +45,7 @@ def collect_folders(path: str) -> list[str]: # Project copyright. copyright = author # Project version. -version = "1.0.1" +version = "1.0.2" # Project release, set it as the same value as version as the separation is not required. release = version From 8d27df5a98fa15254e5f2854adf8bb1b19a20e13 Mon Sep 17 00:00:00 2001 From: Diego Martinez Date: Sat, 17 Feb 2024 14:18:55 +0100 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bc1cdf9..8a1e36b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "python-signal-edges" -version = "1.0.1" +version = "1.0.2" description = "Extract state levels and edges from signals, among others" license = "MIT" authors = ["Diego Martinez "]