Skip to content

Commit 740373a

Browse files
committed
Bump version: 0.3.7 → 0.3.8
1 parent 3d5618f commit 740373a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

appimage/build-appimage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
version=0.3.7
3+
version=0.3.8
44

55
mkdir -p build && cd build
66

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = 'tmon' %}
2-
{% set version = '0.3.7' %}
2+
{% set version = '0.3.8' %}
33

44
package:
55
name: "{{ name|lower }}"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.7
2+
current_version = 0.3.8
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@
6464
test_suite='tests',
6565
tests_require=test_requirements,
6666
url='https://github.com/gmagno/tmon',
67-
version='0.3.7',
67+
version='0.3.8',
6868
zip_safe=False,
6969
)

tmon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Goncalo Magno"""
44
__email__ = 'goncalo@gmagno.dev'
5-
__version__ = '0.3.7'
5+
__version__ = '0.3.8'

tmon/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def __call__(self, parser, namespace, values, option_string=None):
2020

2121
def parse_args():
2222
description = (
23-
"Temperature Monitor (tmon v0.3.7) -- executes a program while\n"
23+
"Temperature Monitor (tmon v0.3.8) -- executes a program while\n"
2424
"monitoring CPU temperature, reporting the min, max and mean\n"
2525
"temperatures and plotting an ascii chart at the end to stderr.\n"
2626
"All signals are redirected to the program.\n"
@@ -158,7 +158,7 @@ def parse_args():
158158
def main():
159159
args = parse_args()
160160
if args['version']:
161-
print("Temperature Monitor -- tmon v0.3.7")
161+
print("Temperature Monitor -- tmon v0.3.8")
162162
return 0
163163
t = tmon.TMon(
164164
config={k: args[k] for k in args if k in ['ysize', 'xsize', 'ylim']}

0 commit comments

Comments
 (0)