Skip to content

Commit

Permalink
Bump version: 1.0.0 → 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gmagno committed Jun 3, 2020
1 parent add224b commit 59a521a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion appimage/build-appimage.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

version=1.0.0
version=1.0.1

mkdir -p build && cd build

Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = 'spyci' %}
{% set version = '1.0.0' %}
{% set version = '1.0.1' %}

package:
name: "{{ name|lower }}"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
2 changes: 1 addition & 1 deletion spyci/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Gonçalo Magno"""
__email__ = '[email protected]'
__version__ = '1.0.0'
__version__ = '1.0.1'
4 changes: 2 additions & 2 deletions spyci/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
""")
Expand Down Expand Up @@ -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']:
Expand Down

0 comments on commit 59a521a

Please sign in to comment.