From e4e1e0c5294cef7a782f5f7a3b0c32fcee7b26f2 Mon Sep 17 00:00:00 2001 From: gituser789 <62549000+gituser789@users.noreply.github.com> Date: Wed, 26 Jun 2024 13:20:53 +0200 Subject: [PATCH] bump version to 0.0.3 --- CHANGELOG.md | 7 +++++-- docs/source/conf.py | 2 +- pygeckocircuits2/geckoCircuitsRemote.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da3ed4f..8dd8e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.0.3] - 2024-06-26 ### Added - 'set_nonlinear_file()' to set non-linear capacitance files -- + ## [0.0.2] - 2024-05-08 ### Added - Automatic deployment to pyPI @@ -23,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[unreleased]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.2...HEAD +[unreleased]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.3...HEAD +[0.0.3]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.2...0.0.3 [0.0.2]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.1...0.0.2 [0.0.1]: https://github.com/upb-lea/pygeckocircuits2/releases/tag/0.0.1 \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 72c27da..400deeb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,7 +20,7 @@ project = 'PyGeckoCircuits2' copyright = '2024, UPB-LEA' author = 'UPB-LEA' -release = '0.0.2' +release = '0.0.3' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pygeckocircuits2/geckoCircuitsRemote.py b/pygeckocircuits2/geckoCircuitsRemote.py index be9c7f0..6f6a181 100644 --- a/pygeckocircuits2/geckoCircuitsRemote.py +++ b/pygeckocircuits2/geckoCircuitsRemote.py @@ -557,9 +557,9 @@ def get_scope_data(self, node_names: Union[List, str], file_name: str, start_tim :type node_names: List[str] or str :param file_name: name of the csv file under which the extracted data needed to be exported :type file_name: str - :param start_time: the time from where the data needs to be recorded + :param start_time: the time from where the data needs to be recorded. Defaults to 0 s. :type start_time: float - :param stop_time: the time at which the data recording stops + :param stop_time: the time at which the data recording stops. Defaults to end of simulation time. :type stop_time: float :param skip_points: the length of points that needs to be skipped (ex: skip_points = 2 means data is recorded after every 2 data points) :type skip_points: int diff --git a/pyproject.toml b/pyproject.toml index 458e599..9155000 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pygeckocircuits2" -version = "0.0.2" +version = "0.0.3" authors = [ { name = "UPB-LEA" }, ]