From 83935c3c07f1566fbdbaef31f7fbb1f6c92feaf5 Mon Sep 17 00:00:00 2001 From: Goncalo Date: Wed, 3 Jun 2020 01:17:17 -0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.1=20=E2=86=92=201.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appimage/build-appimage.sh | 2 +- meta.yaml | 2 +- setup.cfg | 2 +- setup.py | 2 +- spyci/__init__.py | 2 +- spyci/cli.py | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/appimage/build-appimage.sh b/appimage/build-appimage.sh index c16e006..afc55ab 100755 --- a/appimage/build-appimage.sh +++ b/appimage/build-appimage.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -version=1.0.1 +version=1.0.2 mkdir -p build && cd build diff --git a/meta.yaml b/meta.yaml index db0f66b..532812b 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'spyci' %} -{% set version = '1.0.1' %} +{% set version = '1.0.2' %} package: name: "{{ name|lower }}" diff --git a/setup.cfg b/setup.cfg index cb20e02..d5cc74c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = True diff --git a/setup.py b/setup.py index 1dfeed4..3fdb1d6 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/gmagno/spyci', - version='1.0.1', + version='1.0.2', zip_safe=False, ) diff --git a/spyci/__init__.py b/spyci/__init__.py index 290b433..c6ca77c 100644 --- a/spyci/__init__.py +++ b/spyci/__init__.py @@ -2,4 +2,4 @@ __author__ = """Gonçalo Magno""" __email__ = 'goncalo@gmagno.dev' -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/spyci/cli.py b/spyci/cli.py index 756cde7..cb04d7a 100644 --- a/spyci/cli.py +++ b/spyci/cli.py @@ -8,7 +8,7 @@ def parse_args(): description = textwrap.dedent(""" - Spyci (spyci v1.0.1) -- parses ngspice raw data files and + Spyci (spyci v1.0.2) -- 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.1") + print("Spice Raw Parse -- spyci v1.0.2") return 0 if kwargs['list_variables']: