Skip to content

Commit

Permalink
Bump version for a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
wyhaines committed Feb 21, 2024
1 parent de6c380 commit 521bc89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.5.1
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: topos-playground.cr
version: 0.5.0
version: 0.5.1

authors:
- Kirk Haines <[email protected]>
Expand Down
4 changes: 1 addition & 3 deletions src/topos-playground/command/init.cr
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ class ToposPlayground::Command::Init < ToposPlayground::Command
end

def run
background_processes = [] of Tuple(Channel(Bool), Channel(String), Process)

Log.for("stdout").info { "Initializing the Topos-Playground...\n" }

verify_dependency_installation
Expand Down Expand Up @@ -180,7 +178,7 @@ class ToposPlayground::Command::Init < ToposPlayground::Command
update_repository(repo_path)
else
Log.for("stdout").info { "Cloning #{repo[:org]}/#{repo[:repo]}..." }
status, _ = run_process("rm -rf #{repo_path}")
_, _ = run_process("rm -rf #{repo_path}")
status, _ = run_process("git clone --depth 1 #{repo[:branch] ? "--branch #{repo[:branch]}" : ""} https://github.com/#{repo[:org]}/#{repo[:repo]}.git #{repo_path}")
if status.success?
Log.for("stdout").info { "#{repo[:repo]}#{repo[:branch] ? " | #{repo[:branch]}" : ""} successfully cloned" }
Expand Down
2 changes: 1 addition & 1 deletion src/topos-playground/command/start.cr
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class ToposPlayground::Command::Start < ToposPlayground::Command::Init
# is triggered by the `topos-playground` process exiting, such as when `ctrl-c` is
# pressed.
def wait_for(background_processes)
# TODO: Have a command line flag so that the CLI _does not_ block on the
# Note to myself: Have a command line flag so that the CLI _does not_ block on the
# execution of the executor or the dapp frontend. Also add a cleanup
# phase to reap any executor or dapp frontend that may be running

Expand Down

1 comment on commit 521bc89

@eliasdiek
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello, we are looking for a dev with your stack to work on our platform, are you up for a freelance/full time role? please contact me on telegram @eliasdiek

Please sign in to comment.