Skip to content

Commit 521bc89

Browse files
committed
Bump version for a release.
1 parent de6c380 commit 521bc89

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.5.1

shard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: topos-playground.cr
2-
version: 0.5.0
2+
version: 0.5.1
33

44
authors:
55
- Kirk Haines <[email protected]>

src/topos-playground/command/init.cr

+1-3
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ class ToposPlayground::Command::Init < ToposPlayground::Command
5656
end
5757

5858
def run
59-
background_processes = [] of Tuple(Channel(Bool), Channel(String), Process)
60-
6159
Log.for("stdout").info { "Initializing the Topos-Playground...\n" }
6260

6361
verify_dependency_installation
@@ -180,7 +178,7 @@ class ToposPlayground::Command::Init < ToposPlayground::Command
180178
update_repository(repo_path)
181179
else
182180
Log.for("stdout").info { "Cloning #{repo[:org]}/#{repo[:repo]}..." }
183-
status, _ = run_process("rm -rf #{repo_path}")
181+
_, _ = run_process("rm -rf #{repo_path}")
184182
status, _ = run_process("git clone --depth 1 #{repo[:branch] ? "--branch #{repo[:branch]}" : ""} https://github.com/#{repo[:org]}/#{repo[:repo]}.git #{repo_path}")
185183
if status.success?
186184
Log.for("stdout").info { "#{repo[:repo]}#{repo[:branch] ? " | #{repo[:branch]}" : ""} successfully cloned" }

src/topos-playground/command/start.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ class ToposPlayground::Command::Start < ToposPlayground::Command::Init
266266
# is triggered by the `topos-playground` process exiting, such as when `ctrl-c` is
267267
# pressed.
268268
def wait_for(background_processes)
269-
# TODO: Have a command line flag so that the CLI _does not_ block on the
269+
# Note to myself: Have a command line flag so that the CLI _does not_ block on the
270270
# execution of the executor or the dapp frontend. Also add a cleanup
271271
# phase to reap any executor or dapp frontend that may be running
272272

0 commit comments

Comments
 (0)