@@ -5,7 +5,7 @@ Pumas or DeepPumas. Currently supported versions of products are:
55
66- ` Pumas@2.6.0 `
77- ` Pumas@2.6.1 `
8- - ` Pumas@2.7.0-prerelease `
8+ - ` Pumas@2.7.0 `
99- ` DeepPumas@0.8.0 `
1010- ` DeepPumas@0.8.1 `
1111
@@ -44,21 +44,21 @@ DeepPumas@0.8.0
4444DeepPumas@0.8.1
4545Pumas@2.6.0
4646Pumas@2.6.1
47- Pumas@2.7.0-prerelease
47+ Pumas@2.7.0
4848```
4949
5050Then initialize any of the listed products to install them, for example:
5151
5252``` plaintext
53- pkg> pumas init Pumas@2.6.1
53+ pkg> pumas init Pumas@2.7.0
5454```
5555
56- This will download and install all the required packages for Pumas 2.6.1 and
56+ This will download and install all the required packages for Pumas 2.7.0 and
5757then precompile them. Once completed you can restart Julia with this newly
5858installed version of Pumas with the following:
5959
6060``` plaintext
61- $ julia +Pumas@2.6.1
61+ $ julia +Pumas@2.7.0
6262
6363julia> using Pumas
6464```
@@ -89,6 +89,7 @@ DeepPumas@0.8.0
8989DeepPumas@0.8.1
9090Pumas@2.6.0
9191Pumas@2.6.1
92+ Pumas@2.7.0
9293```
9394
9495### ` init ` ializing products
@@ -110,13 +111,13 @@ After running `init` you can then start using the product via the
110111custom ` juliaup ` channel that is added, for example:
111112
112113``` plaintext
113- pkg> pumas init Pumas@2.6.1
114+ pkg> pumas init Pumas@2.7.0
114115
115116[output skipped...]
116117
117118julia> exit()
118119
119- $ julia +Pumas@2.6.1
120+ $ julia +Pumas@2.7.0
120121
121122julia> using Pumas
122123```
@@ -125,13 +126,13 @@ If you specified a `path` when initializing then specify that with the
125126` --project ` flag:
126127
127128``` plaintext
128- pkg> pumas init Pumas@2.6.1 my-project
129+ pkg> pumas init Pumas@2.7.0 my-project
129130
130131[output skipped...]
131132
132133julia> exit()
133134
134- $ julia +Pumas@2.6.1 --project=my-project
135+ $ julia +Pumas@2.7.0 --project=my-project
135136
136137julia> using Pumas
137138```
@@ -164,7 +165,7 @@ packages to a particular environment using the normal package manager `add`
164165operation.
165166
166167``` plaintext
167- julia +Pumas@2.6.1
168+ julia +Pumas@2.7.0
168169
169170pkg> add --preserve=all ExtraPackage
170171```
@@ -239,42 +240,42 @@ Start VSCode and then open the "command palette" with `Ctrl+Shift+P` (or with
239240` Cmd+Shift+P ` on macOS). Type in "Open User Settings" and select "Preferences: Open User Settings",
240241which will open an editor window with your user configuration.
241242
242- Set the "Julia: Executable Path" setting to ` julia +Pumas@2.6.1 ` ,
243+ Set the "Julia: Executable Path" setting to ` julia +Pumas@2.7.0 ` ,
243244or whichever installed version you would like to use as your default.
244245
245- Set the "Julia: Environment Path" setting to ` "~/.julia/environments/Pumas@2.6.1 " ` ,
246+ Set the "Julia: Environment Path" setting to ` "~/.julia/environments/Pumas@2.7.0 " ` ,
246247or whichever installed version you would like to use as your default.
247248
248249Optionally, execute
249250
250251``` plaintext
251- $ juliaup default Pumas@2.6.1
252+ $ juliaup default Pumas@2.7.0
252253```
253254
254255in the terminal,
255- with ` Pumas@2.6.1 ` replaced with whichever installed version you would like to use as your default,
256+ with ` Pumas@2.7.0 ` replaced with whichever installed version you would like to use as your default,
256257to ensure that running the ` julia ` command starts the default product version.
257258
258259### Project Configuration
259260
260261Start VSCode and then open the "command palette" with ` Ctrl+Shift+P ` (or with
261262` Cmd+Shift+P ` on macOS). Type in "Open Workspace Settings" and select "Preferences: Open Workspace Settings",
262263which will open an editor window with your user configuration.
263- Set the "Julia: Executable Path" setting to ` julia +Pumas@2.6.1 ` ,
264+ Set the "Julia: Executable Path" setting to ` julia +Pumas@2.7.0 ` ,
264265or whichever installed version you would like to use in the current project.
265266
266267Reopen the "command palette". Type in "Change Current Environment" and select "Julia: Change Current Environment",
267268which will open a popup with different Julia environments.
268- Select "Pumas@2.6.1 ", or whichever installed version you would like to use in the current project.
269+ Select "Pumas@2.7.0 ", or whichever installed version you would like to use in the current project.
269270
270271Optionally, execute
271272
272273``` plaintext
273- $ juliaup override set Pumas@2.6.1
274+ $ juliaup override set Pumas@2.7.0
274275```
275276
276277in the terminal in the project directory,
277- with ` Pumas@2.6.1 ` replaced with whichever installed version you would like to use in the current project,
278+ with ` Pumas@2.7.0 ` replaced with whichever installed version you would like to use in the current project,
278279to ensure that running the ` julia ` command in the current project starts the product version used in the current project.
279280
280281## Usage with Quarto
0 commit comments