Skip to content
This repository was archived by the owner on May 23, 2022. It is now read-only.

Commit edb3974

Browse files
Lg/0.7.2 version (#550)
* 0.7.2 version number * 0.7.2 release content * Update modules/release-notes/pages/0.7.2-rn.adoc Co-authored-by: Prithvi Shahi <50885601+p-shahi@users.noreply.github.com> Co-authored-by: Prithvi Shahi <50885601+p-shahi@users.noreply.github.com>
1 parent 179cf83 commit edb3974

14 files changed

Lines changed: 31 additions & 13 deletions

File tree

modules/ROOT/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123

124124

125125
.xref:release-notes:sdk-release-notes.adoc[Release notes]
126+
** xref:release-notes:0.7.2-rn.adoc[0.7.2]
126127
** xref:release-notes:0.7.1-rn.adoc[0.7.1]
127128
** xref:release-notes:0.7.0-rn.adoc[0.7.0]
128129
** xref:release-notes:0.6.26-rn.adoc[0.6.26]

modules/ROOT/pages/download.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ To download and install a specific version from a terminal shell:
3535

3636
. Set the `DFX_VERSION` environment variable to the version of the {sdk-short-name} package you want to install as a prefix to `+curl+` command.
3737
+
38-
For example, to install version 0.7.1, you would run the following command:
38+
For example, to install version 0.7.2, you would run the following command:
3939
+
4040
[source,bash]
4141
----
42-
DFX_VERSION=0.7.1 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
42+
DFX_VERSION=0.7.2 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
4343
----
4444

4545
NOTE: If you are using the DFX_VERSION environment variable to install a version of the {sdk-short-name} not yet publicly available, see this link:http-middleware{outfilesuffix}[article] for an overview of what's changed.

modules/developers-guide/examples/add-stylesheet-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "webpack"
88
},
99
"devDependencies": {
10-
"@dfinity/agent": "0.7.1",
10+
"@dfinity/agent": "0.7.2",
1111
"assert": "2.0.0",
1212
"buffer": "6.0.3",
1313
"events": "3.3.0",

modules/developers-guide/examples/custom-frontend-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "webpack"
88
},
99
"devDependencies": {
10-
"@dfinity/agent": "0.7.1",
10+
"@dfinity/agent": "0.7.2",
1111
"assert": "2.0.0",
1212
"buffer": "6.0.3",
1313
"events": "3.3.0",

modules/developers-guide/examples/define-actor-dfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"packtool": ""
1111
}
1212
},
13-
"dfx": "0.7.1",
13+
"dfx": "0.7.2",
1414
"networks": {
1515
"local": {
1616
"bind": "127.0.0.1:8000",

modules/developers-guide/examples/multiple-actors/dfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"packtool": ""
1919
}
2020
},
21-
"dfx": "0.7.1",
21+
"dfx": "0.7.2",
2222
"networks": {
2323
"local": {
2424
"bind": "127.0.0.1:8000",

modules/developers-guide/examples/sample-dfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
},
2626

27-
"dfx": "0.7.1",
27+
"dfx": "0.7.2",
2828
"networks": {
2929
"local": {
3030
"bind": "127.0.0.1:8000",

modules/developers-guide/examples/sample-explore-dfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"packtool": ""
2424
}
2525
},
26-
"dfx": "0.7.1",
26+
"dfx": "0.7.2",
2727
"networks": {
2828
"local": {
2929
"bind": "127.0.0.1:8000",

modules/developers-guide/pages/cli-reference/dfx-envars.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ DFX_TELEMETRY_DISABLED=1
6262
Use the `+DFX_VERSION+` environment variable to identify a specific version of the {sdk-short-name} that you want to install.
6363

6464
....
65-
DFX_VERSION=0.7.1 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
65+
DFX_VERSION=0.7.2 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
6666
....

modules/developers-guide/pages/install-upgrade-remove.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The following table describes the development environment components that the in
5353

5454
The `~/.cache/dfinity/versions` directory stores one or more versioned subdirectories of the {sdk-short-name}.
5555
Each versioned subdirectory contains the all of the directories and files required for a specific version of the {sdk-short-name}.
56-
For example, if you list the contents of the `~/.cache/dfinity/versions/0.7.1` directory you would see the following core components:
56+
For example, if you list the contents of the `~/.cache/dfinity/versions/0.7.2` directory you would see the following core components:
5757

5858
....
5959
total 349192

0 commit comments

Comments
 (0)