Skip to content

Commit

Permalink
Bump version: 1.0.1 → 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gmagno committed Jun 3, 2020
1 parent c703c93 commit 83935c3
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.1
version=1.0.2

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.1' %}
{% set version = '1.0.2' %}

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.1
current_version = 1.0.2
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 @@ -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,
)
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__ = 'goncalo@gmagno.dev'
__version__ = '1.0.1'
__version__ = '1.0.2'
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.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
""")
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.1")
print("Spice Raw Parse -- spyci v1.0.2")
return 0

if kwargs['list_variables']:
Expand Down

0 comments on commit 83935c3

Please sign in to comment.