Skip to content

Commit

Permalink
Version: set to 12.0~rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Boutillier committed Dec 20, 2021
1 parent cc4f24d commit 7a8c331
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scripts/tezos-docker-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -704,21 +704,21 @@ if [ "$#" -eq 0 ] ; then usage ; exit 1; else shift ; fi
case $(basename "$0") in
hangzhounet.sh)
docker_base_dir="$HOME/.tezos-hangzhounet"
docker_image=tezos/tezos:master
docker_image=tezos/tezos:v12.0-rc1
docker_compose_base_name=hangzhounet
default_port=9732
network=hangzhounet
;;
ithacanet.sh)
docker_base_dir="$HOME/.tezos-ithacanet"
docker_image=tezos/tezos:master
docker_image=tezos/tezos:v12.0-rc1
docker_compose_base_name=ithacanet
default_port=9732
network=ithacanet
;;
*)
docker_base_dir="$HOME/.tezos-mainnet"
docker_image=tezos/tezos:master
docker_image=tezos/tezos:v12.0-rc1
docker_compose_base_name="mainnet"
default_port=9732
network=mainnet
Expand Down
2 changes: 1 addition & 1 deletion src/lib_version/version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ let pp f {major; minor; additional_info} =

let to_string x = Format.asprintf "%a" pp x

let current = {major = 12; minor = 0; additional_info = Dev}
let current = {major = 12; minor = 0; additional_info = RC 1}

let current_string = to_string current

0 comments on commit 7a8c331

Please sign in to comment.