From 9f875b52a8262d9a2616bbf9364a3fd439736350 Mon Sep 17 00:00:00 2001 From: Nikita Sirgienko Date: Wed, 22 Aug 2018 01:27:21 +0300 Subject: [PATCH 1/3] Update info about `versioninfo` in devdocs --- doc/src/devdocs/backtraces.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/src/devdocs/backtraces.md b/doc/src/devdocs/backtraces.md index ca750b79a320d..cf5d4a52fd3a5 100644 --- a/doc/src/devdocs/backtraces.md +++ b/doc/src/devdocs/backtraces.md @@ -16,9 +16,10 @@ and follow the instructions to generate the debugging information requested. Ta No matter the error, we will always need to know what version of Julia you are running. When Julia first starts up, a header is printed out with a version number and date. Please also include the -output of `versioninfo()` in any report you create: +output of `versioninfo()` in any report you create (sinse v1.0.0 this function moved into [`InteractiveUtils`](@ref InteractiveUtils.versioninfo) module, so maybe you need import the module): ```@repl +using InteractiveUtils versioninfo() ``` From 2fc589c5f0fe1a41bc72871250836c9d1d771930 Mon Sep 17 00:00:00 2001 From: Nikita Sirgienko Date: Wed, 22 Aug 2018 12:10:32 +0300 Subject: [PATCH 2/3] Fix misspelling and wrong version --- doc/src/devdocs/backtraces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/devdocs/backtraces.md b/doc/src/devdocs/backtraces.md index cf5d4a52fd3a5..7e67bab3514e3 100644 --- a/doc/src/devdocs/backtraces.md +++ b/doc/src/devdocs/backtraces.md @@ -16,7 +16,7 @@ and follow the instructions to generate the debugging information requested. Ta No matter the error, we will always need to know what version of Julia you are running. When Julia first starts up, a header is printed out with a version number and date. Please also include the -output of `versioninfo()` in any report you create (sinse v1.0.0 this function moved into [`InteractiveUtils`](@ref InteractiveUtils.versioninfo) module, so maybe you need import the module): +output of `versioninfo()` in any report you create (sinсe version 0.7.0 this function moved into [`InteractiveUtils`](@ref InteractiveUtils.versioninfo) module, so maybe you need import the module): ```@repl using InteractiveUtils From f90c87da508c1973a366b8721e1afc8b2ea8a1fd Mon Sep 17 00:00:00 2001 From: Nikita Sirgienko Date: Wed, 22 Aug 2018 18:05:57 +0300 Subject: [PATCH 3/3] Change information message --- doc/src/devdocs/backtraces.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/src/devdocs/backtraces.md b/doc/src/devdocs/backtraces.md index 7e67bab3514e3..a65a494bbc3a4 100644 --- a/doc/src/devdocs/backtraces.md +++ b/doc/src/devdocs/backtraces.md @@ -15,8 +15,7 @@ and follow the instructions to generate the debugging information requested. Ta ## [Version/Environment info](@id dev-version-info) No matter the error, we will always need to know what version of Julia you are running. When Julia -first starts up, a header is printed out with a version number and date. Please also include the -output of `versioninfo()` in any report you create (sinсe version 0.7.0 this function moved into [`InteractiveUtils`](@ref InteractiveUtils.versioninfo) module, so maybe you need import the module): +first starts up, a header is printed out with a version number and date. Please also include the output of `versioninfo()` (exported from the [`InteractiveUtils`](@ref InteractiveUtils.versioninfo) standard library) in any report you create: ```@repl using InteractiveUtils