diff --git a/appimage/build-appimage.sh b/appimage/build-appimage.sh index 9893ac4..c16e006 100755 --- a/appimage/build-appimage.sh +++ b/appimage/build-appimage.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -version=1.0.0 +version=1.0.1 mkdir -p build && cd build diff --git a/meta.yaml b/meta.yaml index 655c7c0..db0f66b 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'spyci' %} -{% set version = '1.0.0' %} +{% set version = '1.0.1' %} package: name: "{{ name|lower }}" diff --git a/setup.cfg b/setup.cfg index becf886..cb20e02 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index f55defa..ea7b99d 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/gmagno/spyci', - version='1.0.0', + version='1.0.1', zip_safe=False, ) diff --git a/spyci/__init__.py b/spyci/__init__.py index ae30afd..290b433 100644 --- a/spyci/__init__.py +++ b/spyci/__init__.py @@ -2,4 +2,4 @@ __author__ = """Gonçalo Magno""" __email__ = 'goncalo@gmagno.dev' -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/spyci/cli.py b/spyci/cli.py index 94142d9..756cde7 100644 --- a/spyci/cli.py +++ b/spyci/cli.py @@ -8,7 +8,7 @@ def parse_args(): description = textwrap.dedent(""" - Spyci (spyci v1.0.0) -- parses ngspice raw data files and + Spyci (spyci v1.0.1) -- parses ngspice raw data files and plots the specified variables. For full documentation check the repo: https://github.com/gmagno/spyci """) @@ -124,7 +124,7 @@ def parse_args(): def main(): kwargs = parse_args() if kwargs['version']: - print("Spice Raw Parse -- spyci v1.0.0") + print("Spice Raw Parse -- spyci v1.0.1") return 0 if kwargs['list_variables']: