Skip to content

Commit

Permalink
Bump version: 0.4.1 → 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gmagno committed Jun 2, 2020
1 parent b012ba8 commit 5fbd63e
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=0.4.1
version=0.5.0

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 = 'spr' %}
{% set version = '0.4.1' %}
{% set version = '0.5.0' %}

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 = 0.4.1
current_version = 0.5.0
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/spr',
version='0.4.1',
version='0.5.0',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion spr/__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__ = '0.4.1'
__version__ = '0.5.0'
4 changes: 2 additions & 2 deletions spr/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def parse_args():
description = textwrap.dedent("""
Spice Raw Parser (spr v0.4.1) -- parses ngspice raw data files and
Spice Raw Parser (spr v0.5.0) -- parses ngspice raw data files and
plots the specified variables.
For full documentation check the repo: https://github.com/gmagno/spr
""")
Expand Down Expand Up @@ -122,7 +122,7 @@ def parse_args():
def main():
kwargs = parse_args()
if kwargs['version']:
print("Spice Raw Parse -- spr v0.4.1")
print("Spice Raw Parse -- spr v0.5.0")
return 0

if kwargs['list_variables']:
Expand Down

0 comments on commit 5fbd63e

Please sign in to comment.