From 9d79960ef643bb64ea750a98f59c5910d1cf9d6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20V=C3=B6r=C3=B6s?= Date: Sat, 29 Jan 2022 21:53:42 +0100 Subject: [PATCH] fix docs glitch, bump version number to 5.0.0 --- code/ulab.c | 2 +- docs/manual/source/conf.py | 2 +- docs/manual/source/scipy-signal.rst | 3 +-- docs/manual/source/ulab-programming.rst | 2 +- docs/scipy-signal.ipynb | 10 +++++----- docs/ulab-convert.ipynb | 16 ++++++++-------- 6 files changed, 17 insertions(+), 18 deletions(-) diff --git a/code/ulab.c b/code/ulab.c index 41e8658..451c2de 100644 --- a/code/ulab.c +++ b/code/ulab.c @@ -33,7 +33,7 @@ #include "user/user.h" #include "utils/utils.h" -#define ULAB_VERSION 4.4.1 +#define ULAB_VERSION 5.0.0 #define xstr(s) str(s) #define str(s) #s diff --git a/docs/manual/source/conf.py b/docs/manual/source/conf.py index 80344b5..2fad713 100644 --- a/docs/manual/source/conf.py +++ b/docs/manual/source/conf.py @@ -27,7 +27,7 @@ copyright = '2019-2022, Zoltán Vörös and contributors' author = 'Zoltán Vörös' # The full version, including alpha/beta/rc tags -release = '4.4.1' +release = '5.0.0' # -- General configuration --------------------------------------------------- diff --git a/docs/manual/source/scipy-signal.rst b/docs/manual/source/scipy-signal.rst index c924b73..d1f3481 100644 --- a/docs/manual/source/scipy-signal.rst +++ b/docs/manual/source/scipy-signal.rst @@ -2,8 +2,7 @@ scipy.signal ============ -Functions in the ``signal`` module can be called by prepending them by -``scipy.signal.``. The module defines the following two functions: +This module defines the single function: 1. `scipy.signal.sosfilt <#sosfilt>`__ diff --git a/docs/manual/source/ulab-programming.rst b/docs/manual/source/ulab-programming.rst index ff1788b..f8c81c9 100644 --- a/docs/manual/source/ulab-programming.rst +++ b/docs/manual/source/ulab-programming.rst @@ -355,7 +355,7 @@ in the ``vector_arctan2`` function: .. code:: c - mp_obj_t vectorise_arctan2(mp_obj_t y, mp_obj_t x) { + mp_obj_t vector_arctan2(mp_obj_t y, mp_obj_t x) { ... uint8_t ndim = 0; size_t *shape = m_new(size_t, ULAB_MAX_DIMS); diff --git a/docs/scipy-signal.ipynb b/docs/scipy-signal.ipynb index d1b4dac..ec10d2e 100644 --- a/docs/scipy-signal.ipynb +++ b/docs/scipy-signal.ipynb @@ -34,8 +34,8 @@ "execution_count": 1, "metadata": { "ExecuteTime": { - "end_time": "2022-01-29T16:52:56.162960Z", - "start_time": "2022-01-29T16:52:56.159913Z" + "end_time": "2022-01-29T20:50:20.813162Z", + "start_time": "2022-01-29T20:50:20.794562Z" } }, "outputs": [], @@ -52,8 +52,8 @@ "execution_count": 2, "metadata": { "ExecuteTime": { - "end_time": "2022-01-29T16:52:57.098131Z", - "start_time": "2022-01-29T16:52:57.078260Z" + "end_time": "2022-01-29T20:50:21.613220Z", + "start_time": "2022-01-29T20:50:21.557819Z" } }, "outputs": [], @@ -225,7 +225,7 @@ "source": [ "# scipy.signal\n", "\n", - "Functions in the `signal` module can be called by prepending them by `scipy.signal.`. The module defines the following two functions:\n", + "This module defines the single function:\n", "\n", "1. [scipy.signal.sosfilt](#sosfilt)" ] diff --git a/docs/ulab-convert.ipynb b/docs/ulab-convert.ipynb index 5a27968..df1f2dc 100644 --- a/docs/ulab-convert.ipynb +++ b/docs/ulab-convert.ipynb @@ -17,8 +17,8 @@ "execution_count": 1, "metadata": { "ExecuteTime": { - "end_time": "2022-01-29T17:00:50.601099Z", - "start_time": "2022-01-29T17:00:50.584913Z" + "end_time": "2022-01-29T20:50:57.025406Z", + "start_time": "2022-01-29T20:50:56.997334Z" } }, "outputs": [ @@ -61,7 +61,7 @@ "author = 'Zoltán Vörös'\n", "\n", "# The full version, including alpha/beta/rc tags\n", - "release = '4.4.1'\n", + "release = '5.0.0'\n", "\n", "\n", "# -- General configuration ---------------------------------------------------\n", @@ -218,8 +218,8 @@ "execution_count": 2, "metadata": { "ExecuteTime": { - "end_time": "2022-01-29T17:00:55.412706Z", - "start_time": "2022-01-29T17:00:53.660836Z" + "end_time": "2022-01-29T20:51:05.307568Z", + "start_time": "2022-01-29T20:51:04.819263Z" } }, "outputs": [], @@ -256,11 +256,11 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": { "ExecuteTime": { - "end_time": "2022-01-29T17:01:25.433812Z", - "start_time": "2022-01-29T17:01:21.941290Z" + "end_time": "2022-01-29T20:52:14.453177Z", + "start_time": "2022-01-29T20:52:04.020858Z" } }, "outputs": [],