You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -31,12 +31,12 @@ The following instructions assume the `cosmovisor` binary is already installed a
31
31
Cosmovisor provides an auto-download option that prevents the need for the following steps in preparing for the upgrade. Although available to validators, this feature should only be used for non-validator nodes and validators should build the binary from source.
32
32
:::
33
33
34
-
Build the upgrade binary (`v7.1.0`) from source:
34
+
Build the upgrade binary (`v7.2.0`) from source:
35
35
36
36
```bash
37
37
cd regen-ledger
38
38
git fetch --tags
39
-
git checkout v7.1.0
39
+
git checkout v7.2.0
40
40
make build
41
41
```
42
42
@@ -49,10 +49,10 @@ Ensure the `regen` binary has been built:
49
49
You should see the following:
50
50
51
51
```bash
52
-
v7.1.0
52
+
v7.2.0
53
53
```
54
54
55
-
Create a `v7_0` directory and copy the upgrade binary (`v7.1.0`) to the directory:
55
+
Create a `v7_0` directory and copy the upgrade binary (`v7.2.0`) to the directory:
@@ -67,21 +67,21 @@ $HOME/.regen/cosmovisor/upgrades/v7_0/bin/regen version
67
67
You should see the following:
68
68
69
69
```bash
70
-
v7.1.0
70
+
v7.2.0
71
71
```
72
72
73
-
At the proposed block height, `cosmovisor` will automatically stop the current binary (`v6.x.x`), set the upgrade binary as the current binary (`v7.1.0`), and then (depending on the cosmovisor settings) perform a backup and restart the node.
73
+
At the proposed block height, `cosmovisor` will automatically stop the current binary (`v6.x.x`), set the upgrade binary as the current binary (`v7.2.0`), and then (depending on the cosmovisor settings) perform a backup and restart the node.
74
74
75
75
### Option 2: Without Cosmovisor
76
76
77
77
Using `cosmovisor` to perform the upgrade is not required. Node operators also have the option to manually update the `regen` binary at the time of the upgrade.
78
78
79
-
First Build the upgrade binary (`v7.1.0`) from source:
79
+
First Build the upgrade binary (`v7.2.0`) from source:
80
80
81
81
```bash
82
82
cd regen-ledger
83
83
git fetch --tags
84
-
git checkout v7.1.0
84
+
git checkout v7.2.0
85
85
make install
86
86
```
87
87
@@ -94,7 +94,7 @@ regen version
94
94
You should see the following:
95
95
96
96
```bash
97
-
v7.1.0
97
+
v7.2.0
98
98
```
99
99
100
100
When the chain halts at the proposed upgrade height, stop the current process running `regen`.
0 commit comments