Skip to content

Commit 63d8613

Browse files
authored
Merge pull request #5 from sacherjj/version-bump-test
Correcting set_version.py script and bumping version to 1.0.8
2 parents a788810 + 9bc6797 commit 63d8613

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.7
1+
1.0.8

casper-node-util/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: casper-node-util
2-
Version: 1.0.7
2+
Version: 1.0.8
33
Architecture: all
44
Maintainer: Joe Sacher <joe.sacher@casper.network>
55
Description: Utility for working with casper-node and casper-sidecar

casper-node-util/usr/bin/casper-node-util

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ NET_CONFIG_PATH = CONFIG_PATH / "network_configs"
3030
SCRIPT_NAME = "casper-node-util"
3131
NODE_IP = "127.0.0.1"
3232
# Below is automatically replaced. Modify set_version.py if changing
33-
VERSION = "1.0.7"
33+
VERSION = "1.0.8"
3434

3535
def get_value_in_section(lines, section_name, value_name):
3636
""" A bit of a hack due to toml not being in std lib """

set_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _line_start_replace(line_start, new_text, file_path):
3131

3232
def set_script_version(version):
3333
print(f"Updating {SCRIPT_FILE}")
34-
line_start = ' VERSION ='
34+
line_start = 'VERSION ='
3535
_line_start_replace(line_start,
3636
new_text=f'{line_start} "{version}"',
3737
file_path=SCRIPT_FILE)

0 commit comments

Comments
 (0)