Skip to content

Commit 466ae00

Browse files
committed
Bump version: 0.3.8 → 0.4.0
1 parent 4cde91c commit 466ae00

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.8
3+
version=0.4.0
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.8' %}
2+
{% set version = '0.4.0' %}
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.8
2+
current_version = 0.4.0
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.8',
67+
version='0.4.0',
6868
zip_safe=False,
6969
)

tmon/__init__.py

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

55
__author__ = """Goncalo Magno"""
66
__email__ = 'goncalo@gmagno.dev'
7-
__version__ = '0.3.8'
7+
__version__ = '0.4.0'

tmon/cli.py

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

2424
def parse_args():
2525
description = textwrap.dedent("""
26-
Temperature Monitor (tmon v0.3.8) -- executes a program while
26+
Temperature Monitor (tmon v0.4.0) -- executes a program while
2727
monitoring CPU temperature, reporting the min, max and mean
2828
temperatures and plotting an ascii chart at the end to stderr.
2929
All signals are redirected to the program.
@@ -202,7 +202,7 @@ def parse_args():
202202
def main():
203203
kwargs = parse_args()
204204
if kwargs['version']:
205-
print("Temperature Monitor -- tmon v0.3.8")
205+
print("Temperature Monitor -- tmon v0.4.0")
206206
return 0
207207

208208
if platform.system() != 'Linux':

0 commit comments

Comments
 (0)