You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2017/12/14 21:12:01 UTC

[GitHub] aditihilbert closed pull request #355: automated asf-site build

aditihilbert closed pull request #355: automated asf-site build
URL: https://github.com/apache/mynewt-site/pull/355
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/latest/mkdocs/search_index.json b/latest/mkdocs/search_index.json
index 48f121313..5a21053a7 100644
--- a/latest/mkdocs/search_index.json
+++ b/latest/mkdocs/search_index.json
@@ -207,17 +207,17 @@
         }, 
         {
             "location": "/newt/install/newt_linux/", 
-            "text": "Installing Newt on Linux\n\n\nYou can install the latest release (1.2.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.\n\n\nThis page shows you how to:\n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.\n\n\n\n\n\n\nInstall the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newt from source.\n\n\n\n\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nSee \nInstalling Previous Releases of Newt\n to install an earlier version of newt.\n\n\nNote:\n  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:\n\n\n\n\nUse the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newt tool.\n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newt Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nInstall the \napt-transport-https\n package to use HTTPS to retrieve packages. \n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\nInstall the apt-transport-https package:\n\n\n$ sudo apt-get update\n$ sudo apt-get install apt-transport-https\n\n\n\n\n\n\n\nDownload the public key for the runtimeco apt repo (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\n$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n\nAdd the repository for the binary and source packages to the \nmynewt.list\n apt source list file:\n\n\n$ sudo tee /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n\n\n\n\n\n\nUpdate the available packages: \n\n\n$ sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n\n\nInstalling the Latest Release of Newt from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package.\n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newt:\n\n\n$ sudo apt-get update \n$ sudo apt-get install newt\n\n\n\n\n\nNote:\n If you encounter build errors (such as missing \nsys/mman.h\n), please make sure you have a 32-bit glibc:\n\n\n$ sudo apt-get install gcc-multilib\n\n\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1.2.0-1_amd64.deb\n$sudo dpkg -i newt_1.2.0-1_amd64.deb\n\n\n\n\n\n\nSee \nChecking the Installed Version of Newt\n to verify that you are using the installed version of newt.\n\n\n\n\nInstalling the Latest Release of Newt from a Source Package\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newt from source.\n\n\n\n1.  You need Go version 1.7.6 or higher to build Newt.  Currently, the latest Go version that Ubuntu installs is 1.6.  Run \ngo version\n to check if you have Go 1.7.6 installed. You can download Go from \nhttps://golang.org/dl/\n.\n\n\n\n2. Download and unpack the newt source:\n\n\n$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_2_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_2_0_tag.tar.gz\n\n\n\n\n\n\n3. Run the build.sh to build the newt tool.\n\n\n$ cd mynewt-newt-mynewt_1_2_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_2_0_tag.tar.gz\n\n\n\n\n\n\n4. You should see the \nnewt/newt\n executable. Move the executable to a bin directory in your PATH:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.\n\n\n$ mv newt/newt $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt /usr/bin\n\n\n\n\n\n\n\n\n\n\n\n Checking the Installed Version of Newt\n\n\n\n1. Check which newt you are using and that the version is the latest release version.\n\n\n$ which newt\n/usr/bin/newt\n$ newt version\nApache Newt version: 1.2.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\n$ newt\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n  newt\n  newt help [\ncommand-name\n]\n    For help on \ncommand-name\n.  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  resign-image Re-sign an image.\n  run          build/create-image/download/debug \ntarget\n\n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the specified element type(s)\n  version      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt [command] --help\n for more information about a command.", 
+            "text": "Installing Newt on Linux\n\n\nYou can install the latest release (1.3.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.\n\n\nThis page shows you how to:\n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.\n\n\n\n\n\n\nInstall the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newt from source.\n\n\n\n\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nSee \nInstalling Previous Releases of Newt\n to install an earlier version of newt.\n\n\nNote:\n  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:\n\n\n\n\nUse the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newt tool.\n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newt Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\n\nDownload the public key for the runtimeco apt repo (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\n$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n\nAdd the repository for the binary and source packages to the \nmynewt.list\n apt source list file:\n\n\n$ sudo tee /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n\n\n\n\n\n\nUpdate the available packages: \n\n\n$ sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n\n\nInstalling the Latest Release of Newt from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package.\n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newt:\n\n\n$ sudo apt-get update\n$ sudo apt-get install newt\n\n\n\n\n\nNote:\n If you encounter build errors (such as missing \nsys/mman.h\n), please make sure you have a 32-bit glibc:\n\n\n$ sudo apt-get install gcc-multilib\n\n\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1.3.0-1_amd64.deb\n$ sudo dpkg -i newt_1.3.0-1_amd64.deb\n\n\n\n\n\n\nSee \nChecking the Installed Version of Newt\n to verify that you are using the installed version of newt.\n\n\n\n\nInstalling the Latest Release of Newt from a Source Package\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newt from source.\n\n\n\n\n\nDownload and unpack the newt source:\n\n\n\n\n$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_3_0_tag.tar.gz\n\n\n\n\n\n\n3. Run the build.sh to build the newt tool.\n\n\n$ cd mynewt-newt-mynewt_1_3_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_3_0_tag.tar.gz\n\n\n\n\n\n\n4. You should see the \nnewt/newt\n executable. Move the executable to a bin directory in your PATH:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.\n\n\n$ mv newt/newt $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt /usr/bin\n\n\n\n\n\n\n\n\n\n\n\n Checking the Installed Version of Newt\n\n\n\n1. Check which newt you are using and that the version is the latest release version.\n\n\n$ which newt\n/usr/bin/newt\n$ newt version\nApache Newt version: 1.3.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\n$ newt\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n  newt\n  newt help [\ncommand-name\n]\n    For help on \ncommand-name\n.  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  resign-image Re-sign an image.\n  run          build/create-image/download/debug \ntarget\n\n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the specified element type(s)\n  version      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt [command] --help\n for more information about a command.", 
             "title": "Install Newt on Linux"
         }, 
         {
             "location": "/newt/install/newt_linux/#installing-newt-on-linux", 
-            "text": "You can install the latest release (1.2.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.  This page shows you how to:    Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.    Install the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newt from source.    If you are installing on an amd64 platform, we recommend that you install from the binary package.  See  Installing Previous Releases of Newt  to install an earlier version of newt.  Note:   We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:   Use the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newt tool.", 
+            "text": "You can install the latest release (1.3.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.  This page shows you how to:    Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.    Install the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newt from source.    If you are installing on an amd64 platform, we recommend that you install from the binary package.  See  Installing Previous Releases of Newt  to install an earlier version of newt.  Note:   We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:   Use the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newt tool.", 
             "title": "Installing Newt on Linux"
         }, 
         {
             "location": "/newt/install/newt_linux/#setting-up-your-computer-to-use-apt-get-to-install-the-package", 
-            "text": "The newt Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Install the  apt-transport-https  package to use HTTPS to retrieve packages.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.   \nInstall the apt-transport-https package:  $ sudo apt-get update\n$ sudo apt-get install apt-transport-https   Download the public key for the runtimeco apt repo ( Note:  There is  a  -  after   apt-key add ):  $ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -   Add the repository for the binary and source packages to the  mynewt.list  apt source list file:  $ sudo tee /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF  \nUpdate the available packages:   $ sudo apt-get update   Note:  If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
+            "text": "The newt Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.    Download the public key for the runtimeco apt repo ( Note:  There is  a  -  after   apt-key add ):  $ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -   Add the repository for the binary and source packages to the  mynewt.list  apt source list file:  $ sudo tee /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF  \nUpdate the available packages:   $ sudo apt-get update   Note:  If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
             "title": "Setting Up Your Computer to use apt-get to Install the Package"
         }, 
         {
@@ -227,17 +227,17 @@
         }, 
         {
             "location": "/newt/install/newt_linux/#method-1-using-apt-get-to-upgrade-or-to-install", 
-            "text": "Run the following commands to upgrade or install the latest version of newt:  $ sudo apt-get update \n$ sudo apt-get install newt  Note:  If you encounter build errors (such as missing  sys/mman.h ), please make sure you have a 32-bit glibc:  $ sudo apt-get install gcc-multilib", 
+            "text": "Run the following commands to upgrade or install the latest version of newt:  $ sudo apt-get update\n$ sudo apt-get install newt  Note:  If you encounter build errors (such as missing  sys/mman.h ), please make sure you have a 32-bit glibc:  $ sudo apt-get install gcc-multilib", 
             "title": "Method 1: Using apt-get to Upgrade or to Install"
         }, 
         {
             "location": "/newt/install/newt_linux/#method-2-downloading-and-installing-the-debian-package-manually", 
-            "text": "Download and install the package manually.  $wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1.2.0-1_amd64.deb\n$sudo dpkg -i newt_1.2.0-1_amd64.deb  \nSee  Checking the Installed Version of Newt  to verify that you are using the installed version of newt.", 
+            "text": "Download and install the package manually.  $ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1.3.0-1_amd64.deb\n$ sudo dpkg -i newt_1.3.0-1_amd64.deb  \nSee  Checking the Installed Version of Newt  to verify that you are using the installed version of newt.", 
             "title": "Method 2: Downloading and Installing the Debian Package Manually"
         }, 
         {
             "location": "/newt/install/newt_linux/#installing-the-latest-release-of-newt-from-a-source-package", 
-            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.  \n1.  You need Go version 1.7.6 or higher to build Newt.  Currently, the latest Go version that Ubuntu installs is 1.6.  Run  go version  to check if you have Go 1.7.6 installed. You can download Go from  https://golang.org/dl/ .  \n2. Download and unpack the newt source:  $ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_2_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_2_0_tag.tar.gz  \n3. Run the build.sh to build the newt tool.  $ cd mynewt-newt-mynewt_1_2_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_2_0_tag.tar.gz  \n4. You should see the  newt/newt  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.  $ mv newt/newt $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:  $ mv newt/newt /usr/bin", 
+            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.   Download and unpack the newt source:   $ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_3_0_tag.tar.gz  \n3. Run the build.sh to build the newt tool.  $ cd mynewt-newt-mynewt_1_3_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_3_0_tag.tar.gz  \n4. You should see the  newt/newt  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.  $ mv newt/newt $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:  $ mv newt/newt /usr/bin", 
             "title": "Installing the Latest Release of Newt from a Source Package"
         }, 
         {
@@ -13332,17 +13332,17 @@
         }, 
         {
             "location": "/newtmgr/install_linux/", 
-            "text": "Installing Newtmgr on Linux\n\n\nYou can install the latest release (1.2.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.   \n\n\nThis page shows you how to: \n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again. \n\n\n\n\n\n\nInstall the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newtmgr from source. \n\n\n\n\n\n\nSee \nInstalling Previous Releases of Newtgmr\n to install an earlier version of newtmgr.\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nNote:\n  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:  \n\n\n\n\nUse the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newtmgr tool. \n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newtmgr Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nInstall the \napt-transport-https\n package to use HTTPS to retrieve packages. \n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\n1. Install the apt-transport-https package:\n\n\n$sudo apt-get update\n$sudo apt-get install apt-transport-https\n\n\n\n\n\n\n2. Download the public key for the runtimeco apt repo  (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\nwget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n3. Add the repository for the binary packages to the \nmynewt.list\n apt source list file.\n\n\n$sudo -s\n[sudo] password for \nuser\n:\nroot$ cat \n /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\nroot$exit\n\n\n\n\n\nNote:\n Do not forget to exit the root shell.\n\n\n\n4. Verify the content of the source list file:\n\n\n$more /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\n\n\n\n\n\n\n5. Update the available packages:\n\n\n$sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n \n\n\nInstalling the Latest Release of Newtmgr from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package. \n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newtmgr:\n\n\n$ sudo apt-get update \n$ sudo apt-get install newtmgr\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1.2.0-1_amd64.deb\n$sudo dpkg -i newtmgr_1.2.0-1_amd64.deb\n\n\n\n\n\nSee \nChecking the Installed Version of Newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n\nInstalling the Latest Release Version of Newtmgr from Source\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.\n\n\n\n1. Download and install the latest version of \nGo\n. Newtmgr requires Go version 1.7.6 or higher.\n\n\n\n2. Create a Go workspace in the /tmp directory: \n\n\n$ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go\n\n\n\n\n\n\n3. Run \ngo get\n to download the newtmgr source.  Note that \ngo get\n pulls down the HEAD from the master branch in git, builds, and installs newtmgr.\n\n\n$ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n4. Check out the source from the latest release version:\n\n\n$ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_2_0_tag\nNote: checking out \nmynewt_1_2_0_tag\n.\n\n\n\n\n\n 5. Build newtmgr from the latest release version: \n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.\n\n\n\n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.\n\n\n\n\n Checking the Latest Version of Newtmgr is Installed\n\n\n\n1. Run \nwhich newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n2. Get information about the newtmgr tool:\n\n\n$newtmgr\nNewtmgr helps you manage remote devices running the Mynewt OS\n\nUsage:\n  newtmgr [flags]\n  newtmgr [command]\n\nAvailable Commands:\n  config      Read or write a config value on a device\n  conn        Manage newtmgr connection profiles\n  crash       Send a crash command to a device\n  datetime    Manage datetime on a device\n  echo        Send data to a device and display the echoed back data\n  fs          Access files on a device\n  help        Help about any command\n  image       Manage images on a device\n  log         Manage logs on a device\n  mpstat      Read mempool statistics from a device\n  reset       Perform a soft reset of a device\n  run         Run test procedures on a device\n  stat        Read statistics from a device\n  taskstat    Read task statistics from a device\n\nFlags:\n  -c, --conn string       connection profile to use\n  -h, --help              help for newtmgr\n  -l, --loglevel string   log level to use (default \ninfo\n)\n      --name string       name of target BLE device; overrides profile setting\n  -t, --timeout float     timeout in seconds (partial seconds allowed) (default 10)\n  -r, --tries int         total number of tries in case of timeout (default 1)\n\nUse \nnewtmgr [command] --help\n for more information about a command.", 
+            "text": "Installing Newtmgr on Linux\n\n\nYou can install the latest release (1.3.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.\n\n\nThis page shows you how to:\n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again. \n\n\n\n\n\n\nInstall the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newtmgr from source.\n\n\n\n\n\n\nSee \nInstalling Previous Releases of Newtgmr\n to install an earlier version of newtmgr.\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nNote:\n  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:\n\n\n\n\nUse the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newtmgr tool. \n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newtmgr Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\n1. Download the public key for the runtimeco apt repo  (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\nwget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n2. Add the repository for the binary packages to the \nmynewt.list\n apt source list file.\n\n\n$ sudo -s\n[sudo] password for \nuser\n:\n# cat \n /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n# exit\n\n\n\n\n\nNote:\n Do not forget to exit the root shell.\n\n\n\n4. Verify the content of the source list file:\n\n\n$ cat /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\n\n\n\n\n\n\n5. Update the available packages:\n\n\n$ sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n \n\n\nInstalling the Latest Release of Newtmgr from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package. \n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newtmgr:\n\n\n$ sudo apt-get update\n$ sudo apt-get install newtmgr\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1.3.0-1_amd64.deb\n$ sudo dpkg -i newtmgr_1.3.0-1_amd64.deb\n\n\n\n\n\nSee \nChecking the Installed Version of Newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n\nInstalling the Latest Release Version of Newtmgr from Source\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.\n\n\n\n1. Download and install the latest version of \nGo\n if it not already available on your distro. Newtmgr requires Go version 1.7.6 or higher.\n\n\n\n2. Create a Go workspace in the /tmp directory: \n\n\n$ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go\n\n\n\n\n\n\n3. Run \ngo get\n to download the newtmgr source.  Note that \ngo get\n pulls down the HEAD from the master branch in git, builds, and installs newtmgr.\n\n\n$ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n4. Check out the source from the latest release version:\n\n\n$ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_3_0_tag\nNote: checking out \nmynewt_1_3_0_tag\n.\n\n\n\n\n\n 5. Build newtmgr from the latest release version: \n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.\n\n\n\n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.\n\n\n\n\n Checking the Latest Version of Newtmgr is Installed\n\n\n\n1. Run \nwhich newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n2. Get information about the newtmgr tool:\n\n\n$ newtmgr\nNewtmgr helps you manage remote devices running the Mynewt OS\n\nUsage:\n  newtmgr [flags]\n  newtmgr [command]\n\nAvailable Commands:\n  config      Read or write a config value on a device\n  conn        Manage newtmgr connection profiles\n  crash       Send a crash command to a device\n  datetime    Manage datetime on a device\n  echo        Send data to a device and display the echoed back data\n  fs          Access files on a device\n  help        Help about any command\n  image       Manage images on a device\n  log         Manage logs on a device\n  mpstat      Read mempool statistics from a device\n  reset       Perform a soft reset of a device\n  run         Run test procedures on a device\n  stat        Read statistics from a device\n  taskstat    Read task statistics from a device\n\nFlags:\n  -c, --conn string       connection profile to use\n  -h, --help              help for newtmgr\n  -l, --loglevel string   log level to use (default \ninfo\n)\n      --name string       name of target BLE device; overrides profile setting\n  -t, --timeout float     timeout in seconds (partial seconds allowed) (default 10)\n  -r, --tries int         total number of tries in case of timeout (default 1)\n\nUse \nnewtmgr [command] --help\n for more information about a command.", 
             "title": "Install Newtmgr On Linux"
         }, 
         {
             "location": "/newtmgr/install_linux/#installing-newtmgr-on-linux", 
-            "text": "You can install the latest release (1.2.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.     This page shows you how to:     Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.     Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newtmgr from source.     See  Installing Previous Releases of Newtgmr  to install an earlier version of newtmgr.  If you are installing on an amd64 platform, we recommend that you install from the binary package.  Note:   We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:     Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newtmgr tool.", 
+            "text": "You can install the latest release (1.3.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.  This page shows you how to:    Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.     Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newtmgr from source.    See  Installing Previous Releases of Newtgmr  to install an earlier version of newtmgr.  If you are installing on an amd64 platform, we recommend that you install from the binary package.  Note:   We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:   Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newtmgr tool.", 
             "title": "Installing Newtmgr on Linux"
         }, 
         {
             "location": "/newtmgr/install_linux/#setting-up-your-computer-to-use-apt-get-to-install-the-package", 
-            "text": "The newtmgr Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Install the  apt-transport-https  package to use HTTPS to retrieve packages.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.   \n1. Install the apt-transport-https package:  $sudo apt-get update\n$sudo apt-get install apt-transport-https  \n2. Download the public key for the runtimeco apt repo  ( Note:  There is  a  -  after   apt-key add ):  wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -  \n3. Add the repository for the binary packages to the  mynewt.list  apt source list file.  $sudo -s\n[sudo] password for  user :\nroot$ cat   /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\nroot$exit  Note:  Do not forget to exit the root shell.  \n4. Verify the content of the source list file:  $more /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main  \n5. Update the available packages:  $sudo apt-get update   Note:  If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
+            "text": "The newtmgr Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.   \n1. Download the public key for the runtimeco apt repo  ( Note:  There is  a  -  after   apt-key add ):  wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -  \n2. Add the repository for the binary packages to the  mynewt.list  apt source list file.  $ sudo -s\n[sudo] password for  user :\n# cat   /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n# exit  Note:  Do not forget to exit the root shell.  \n4. Verify the content of the source list file:  $ cat /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main  \n5. Update the available packages:  $ sudo apt-get update   Note:  If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
             "title": "Setting Up Your Computer to use apt-get to Install the Package"
         }, 
         {
@@ -13352,17 +13352,17 @@
         }, 
         {
             "location": "/newtmgr/install_linux/#method-1-using-apt-get-to-upgrade-or-to-install", 
-            "text": "Run the following commands to upgrade or install the latest version of newtmgr:  $ sudo apt-get update \n$ sudo apt-get install newtmgr", 
+            "text": "Run the following commands to upgrade or install the latest version of newtmgr:  $ sudo apt-get update\n$ sudo apt-get install newtmgr", 
             "title": "Method 1: Using apt-get to Upgrade or to Install"
         }, 
         {
             "location": "/newtmgr/install_linux/#method-2-downloading-and-installing-the-debian-package-manually", 
-            "text": "Download and install the package manually.  $wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1.2.0-1_amd64.deb\n$sudo dpkg -i newtmgr_1.2.0-1_amd64.deb  See  Checking the Installed Version of Newtmgr  to verify that you are using the installed version of newtmgr.", 
+            "text": "Download and install the package manually.  $ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1.3.0-1_amd64.deb\n$ sudo dpkg -i newtmgr_1.3.0-1_amd64.deb  See  Checking the Installed Version of Newtmgr  to verify that you are using the installed version of newtmgr.", 
             "title": "Method 2: Downloading and Installing the Debian Package Manually"
         }, 
         {
             "location": "/newtmgr/install_linux/#installing-the-latest-release-version-of-newtmgr-from-source", 
-            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.  \n1. Download and install the latest version of  Go . Newtmgr requires Go version 1.7.6 or higher.  \n2. Create a Go workspace in the /tmp directory:   $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n3. Run  go get  to download the newtmgr source.  Note that  go get  pulls down the HEAD from the master branch in git, builds, and installs newtmgr.  $ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr  \n4. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_2_0_tag\nNote: checking out  mynewt_1_2_0_tag .   5. Build newtmgr from the latest release version:   $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr  \n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.  \n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.", 
+            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.  \n1. Download and install the latest version of  Go  if it not already available on your distro. Newtmgr requires Go version 1.7.6 or higher.  \n2. Create a Go workspace in the /tmp directory:   $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n3. Run  go get  to download the newtmgr source.  Note that  go get  pulls down the HEAD from the master branch in git, builds, and installs newtmgr.  $ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr  \n4. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_3_0_tag\nNote: checking out  mynewt_1_3_0_tag .   5. Build newtmgr from the latest release version:   $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr  \n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.  \n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.", 
             "title": "Installing the Latest Release Version of Newtmgr from Source"
         }, 
         {
diff --git a/latest/newt/install/newt_linux/index.html b/latest/newt/install/newt_linux/index.html
index 600f53840..df1843acf 100644
--- a/latest/newt/install/newt_linux/index.html
+++ b/latest/newt/install/newt_linux/index.html
@@ -434,7 +434,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                         
                         
                             <h2 id="installing-newt-on-linux">Installing Newt on Linux</h2>
-<p>You can install the latest release (1.2.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.</p>
+<p>You can install the latest release (1.3.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.</p>
 <p>This page shows you how to:</p>
 <ol>
 <li>
@@ -450,7 +450,7 @@ <h2 id="installing-newt-on-linux">Installing Newt on Linux</h2>
 </ol>
 <p>If you are installing on an amd64 platform, we recommend that you install from the binary package.</p>
 <p>See <a href="../prev_releases/">Installing Previous Releases of Newt</a> to install an earlier version of newt.</p>
-<p><strong>Note:</strong>  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
+<p><strong>Note:</strong>  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
 <p><strong>Note:</strong> See <a href="../../../faq/go_env">Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools</a> if you want to:</p>
 <ul>
 <li>Use the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.</li>
@@ -461,17 +461,9 @@ <h3 id="setting-up-your-computer-to-use-apt-get-to-install-the-package">Setting
 <p>The newt Debian packages are stored in a private APT repository on <strong>https://github/runtimeco/debian-mynewt</strong>.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:</p>
 <p><strong>Note</strong>: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.</p>
 <ol>
-<li>Install the <code>apt-transport-https</code> package to use HTTPS to retrieve packages. </li>
 <li>Download the public key for the runtimeco APT repository and import the key into the apt keychain.</li>
 <li>Add the repository for the binary and source packages to the apt source list.</li>
 </ol>
-<p><br>
-Install the apt-transport-https package:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
-$ sudo apt-get install apt-transport-https
-</pre></div>
-
-
 <p><br></p>
 <p>Download the public key for the runtimeco apt repo (<strong>Note:</strong> There is  a <code>-</code> after  <code>apt-key add</code>):</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -
@@ -493,7 +485,7 @@ <h3 id="setting-up-your-computer-to-use-apt-get-to-install-the-package">Setting
 
 
 <p><br>
-<strong>Note:</strong> If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
+<strong>Note:</strong> If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404
 </pre></div>
 
@@ -504,7 +496,7 @@ <h2 id="installing-the-latest-release-of-newt-from-a-binary-package">Installing
 <p><br></p>
 <h4 id="method-1-using-apt-get-to-upgrade-or-to-install">Method 1: Using apt-get to Upgrade or to Install</h4>
 <p>Run the following commands to upgrade or install the latest version of newt:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update 
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
 $ sudo apt-get install newt
 </pre></div>
 
@@ -517,8 +509,8 @@ <h4 id="method-1-using-apt-get-to-upgrade-or-to-install">Method 1: Using apt-get
 <p><br></p>
 <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method 2: Downloading and Installing the Debian Package Manually</h4>
 <p>Download and install the package manually.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1.2.0-1_amd64.deb
-$sudo dpkg -i newt_1.2.0-1_amd64.deb
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1.3.0-1_amd64.deb
+$ sudo dpkg -i newt_1.3.0-1_amd64.deb
 </pre></div>
 
 
@@ -526,21 +518,21 @@ <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method
 See <a href="#check">Checking the Installed Version of Newt</a> to verify that you are using the installed version of newt.</p>
 <p><br></p>
 <h3 id="installing-the-latest-release-of-newt-from-a-source-package">Installing the Latest Release of Newt from a Source Package</h3>
-<p>If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.</p>
-<p><br>
-1.  You need Go version 1.7.6 or higher to build Newt.  Currently, the latest Go version that Ubuntu installs is 1.6.  Run <code>go version</code> to check if you have Go 1.7.6 installed. You can download Go from <a href="https://golang.org/dl/">https://golang.org/dl/</a>.</p>
-<p><br>
-2. Download and unpack the newt source:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_2_0_tag.tar.gz
-$ tar -xzf /tmp/mynewt_1_2_0_tag.tar.gz
+<p>If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.
+<br></p>
+<ol>
+<li>Download and unpack the newt source:</li>
+</ol>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz
+$ tar -xzf /tmp/mynewt_1_3_0_tag.tar.gz
 </pre></div>
 
 
 <p><br>
 3. Run the build.sh to build the newt tool.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd mynewt-newt-mynewt_1_2_0_tag
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd mynewt-newt-mynewt_1_3_0_tag
 $ ./build.sh
-$ rm /tmp/mynewt_1_2_0_tag.tar.gz
+$ rm /tmp/mynewt_1_3_0_tag.tar.gz
 </pre></div>
 
 
@@ -569,7 +561,7 @@ <h3 id="checking-the-installed-version-of-newt"><a name="check"></a> Checking th
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ which newt
 /usr/bin/newt
 $ newt version
-Apache Newt version: 1.2.0
+Apache Newt version: 1.3.0
 </pre></div>
 
 
diff --git a/latest/newtmgr/install_linux/index.html b/latest/newtmgr/install_linux/index.html
index a5fcd487f..b88eecb68 100644
--- a/latest/newtmgr/install_linux/index.html
+++ b/latest/newtmgr/install_linux/index.html
@@ -407,8 +407,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                         
                         
                             <h2 id="installing-newtmgr-on-linux">Installing Newtmgr on Linux</h2>
-<p>You can install the latest release (1.2.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.   </p>
-<p>This page shows you how to: </p>
+<p>You can install the latest release (1.3.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.</p>
+<p>This page shows you how to:</p>
 <ol>
 <li>
 <p>Set up your computer to download Debian binary packages from the runtimeco APT repository.</p>
@@ -418,13 +418,13 @@ <h2 id="installing-newtmgr-on-linux">Installing Newtmgr on Linux</h2>
 <p>Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.</p>
 </li>
 <li>
-<p>Download, build, and install the latest release version of newtmgr from source. </p>
+<p>Download, build, and install the latest release version of newtmgr from source.</p>
 </li>
 </ol>
 <p>See <a href="../../newtmgr/prev_releases">Installing Previous Releases of Newtgmr</a> to install an earlier version of newtmgr.</p>
 <p>If you are installing on an amd64 platform, we recommend that you install from the binary package.</p>
-<p><strong>Note:</strong>  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
-<p><strong>Note:</strong> See <a href="../../faq/go_env">Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools</a> if you want to:  </p>
+<p><strong>Note:</strong>  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
+<p><strong>Note:</strong> See <a href="../../faq/go_env">Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools</a> if you want to:</p>
 <ul>
 <li>Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.</li>
 <li>Contribute to the newtmgr tool. </li>
@@ -434,50 +434,42 @@ <h3 id="setting-up-your-computer-to-use-apt-get-to-install-the-package">Setting
 <p>The newtmgr Debian packages are stored in a private APT repository on <strong>https://github/runtimeco/debian-mynewt</strong>.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:</p>
 <p><strong>Note</strong>: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.</p>
 <ol>
-<li>Install the <code>apt-transport-https</code> package to use HTTPS to retrieve packages. </li>
 <li>Download the public key for the runtimeco APT repository and import the key into the apt keychain.</li>
 <li>Add the repository for the binary and source packages to the apt source list.</li>
 </ol>
 <p><br>
-1. Install the apt-transport-https package:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$sudo apt-get update
-$sudo apt-get install apt-transport-https
-</pre></div>
-
-
-<p><br>
-2. Download the public key for the runtimeco apt repo  (<strong>Note:</strong> There is  a <code>-</code> after  <code>apt-key add</code>):</p>
+1. Download the public key for the runtimeco apt repo  (<strong>Note:</strong> There is  a <code>-</code> after  <code>apt-key add</code>):</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -
 </pre></div>
 
 
 <p><br>
-3. Add the repository for the binary packages to the <code>mynewt.list</code> apt source list file.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$sudo -s
+2. Add the repository for the binary packages to the <code>mynewt.list</code> apt source list file.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo -s
 [sudo] password for &lt;user&gt;:
-root$ cat &gt; /etc/apt/sources.list.d/mynewt.list &lt;&lt;EOF
+# cat &gt; /etc/apt/sources.list.d/mynewt.list &lt;&lt;EOF
 deb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main
 EOF
-root$exit
+# exit
 </pre></div>
 
 
 <p><strong>Note:</strong> Do not forget to exit the root shell.</p>
 <p><br>
 4. Verify the content of the source list file:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$more /etc/apt/sources.list.d/mynewt.list
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cat /etc/apt/sources.list.d/mynewt.list
 deb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main
 </pre></div>
 
 
 <p><br>
 5. Update the available packages:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$sudo apt-get update
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
 </pre></div>
 
 
 <p><br>
-<strong>Note:</strong> If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
+<strong>Note:</strong> If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404
 </pre></div>
 
@@ -488,15 +480,15 @@ <h3 id="installing-the-latest-release-of-newtmgr-from-a-binary-package">Installi
 <p><br></p>
 <h4 id="method-1-using-apt-get-to-upgrade-or-to-install">Method 1: Using apt-get to Upgrade or to Install</h4>
 <p>Run the following commands to upgrade or install the latest version of newtmgr:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update 
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
 $ sudo apt-get install newtmgr
 </pre></div>
 
 
 <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method 2: Downloading and Installing the Debian Package Manually</h4>
 <p>Download and install the package manually.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1.2.0-1_amd64.deb
-$sudo dpkg -i newtmgr_1.2.0-1_amd64.deb
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1.3.0-1_amd64.deb
+$ sudo dpkg -i newtmgr_1.3.0-1_amd64.deb
 </pre></div>
 
 
@@ -505,7 +497,7 @@ <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method
 <h3 id="installing-the-latest-release-version-of-newtmgr-from-source">Installing the Latest Release Version of Newtmgr from Source</h3>
 <p>If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.</p>
 <p><br>
-1. Download and install the latest version of <a href="https://golang.org/dl/">Go</a>. Newtmgr requires Go version 1.7.6 or higher.</p>
+1. Download and install the latest version of <a href="https://golang.org/dl/">Go</a> if it not already available on your distro. Newtmgr requires Go version 1.7.6 or higher.</p>
 <p><br>
 2. Create a Go workspace in the /tmp directory: </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd /tmp
@@ -526,8 +518,8 @@ <h3 id="installing-the-latest-release-version-of-newtmgr-from-source">Installing
 <p><br>
 4. Check out the source from the latest release version:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd src/mynewt.apache.org/newtmgr
-$ git checkout mynewt_1_2_0_tag
-Note: checking out &#39;mynewt_1_2_0_tag&#39;.
+$ git checkout mynewt_1_3_0_tag
+Note: checking out &#39;mynewt_1_3_0_tag&#39;.
 </pre></div>
 
 
@@ -549,7 +541,7 @@ <h3 id="checking-the-latest-version-of-newtmgr-is-installed"><a name="check"></a
 1. Run <code>which newtmgr</code> to verify that you are using the installed version of newtmgr.</p>
 <p><br>
 2. Get information about the newtmgr tool:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$newtmgr
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ newtmgr
 Newtmgr helps you manage remote devices running the Mynewt OS
 
 Usage:
diff --git a/mkdocs/search_index.json b/mkdocs/search_index.json
index 48f121313..5a21053a7 100644
--- a/mkdocs/search_index.json
+++ b/mkdocs/search_index.json
@@ -207,17 +207,17 @@
         }, 
         {
             "location": "/newt/install/newt_linux/", 
-            "text": "Installing Newt on Linux\n\n\nYou can install the latest release (1.2.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.\n\n\nThis page shows you how to:\n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.\n\n\n\n\n\n\nInstall the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newt from source.\n\n\n\n\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nSee \nInstalling Previous Releases of Newt\n to install an earlier version of newt.\n\n\nNote:\n  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:\n\n\n\n\nUse the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newt tool.\n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newt Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nInstall the \napt-transport-https\n package to use HTTPS to retrieve packages. \n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\nInstall the apt-transport-https package:\n\n\n$ sudo apt-get update\n$ sudo apt-get install apt-transport-https\n\n\n\n\n\n\n\nDownload the public key for the runtimeco apt repo (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\n$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n\nAdd the repository for the binary and source packages to the \nmynewt.list\n apt source list file:\n\n\n$ sudo tee /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n\n\n\n\n\n\nUpdate the available packages: \n\n\n$ sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n\n\nInstalling the Latest Release of Newt from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package.\n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newt:\n\n\n$ sudo apt-get update \n$ sudo apt-get install newt\n\n\n\n\n\nNote:\n If you encounter build errors (such as missing \nsys/mman.h\n), please make sure you have a 32-bit glibc:\n\n\n$ sudo apt-get install gcc-multilib\n\n\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1.2.0-1_amd64.deb\n$sudo dpkg -i newt_1.2.0-1_amd64.deb\n\n\n\n\n\n\nSee \nChecking the Installed Version of Newt\n to verify that you are using the installed version of newt.\n\n\n\n\nInstalling the Latest Release of Newt from a Source Package\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newt from source.\n\n\n\n1.  You need Go version 1.7.6 or higher to build Newt.  Currently, the latest Go version that Ubuntu installs is 1.6.  Run \ngo version\n to check if you have Go 1.7.6 installed. You can download Go from \nhttps://golang.org/dl/\n.\n\n\n\n2. Download and unpack the newt source:\n\n\n$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_2_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_2_0_tag.tar.gz\n\n\n\n\n\n\n3. Run the build.sh to build the newt tool.\n\n\n$ cd mynewt-newt-mynewt_1_2_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_2_0_tag.tar.gz\n\n\n\n\n\n\n4. You should see the \nnewt/newt\n executable. Move the executable to a bin directory in your PATH:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.\n\n\n$ mv newt/newt $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt /usr/bin\n\n\n\n\n\n\n\n\n\n\n\n Checking the Installed Version of Newt\n\n\n\n1. Check which newt you are using and that the version is the latest release version.\n\n\n$ which newt\n/usr/bin/newt\n$ newt version\nApache Newt version: 1.2.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\n$ newt\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n  newt\n  newt help [\ncommand-name\n]\n    For help on \ncommand-name\n.  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  resign-image Re-sign an image.\n  run          build/create-image/download/debug \ntarget\n\n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the specified element type(s)\n  version      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt [command] --help\n for more information about a command.", 
+            "text": "Installing Newt on Linux\n\n\nYou can install the latest release (1.3.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.\n\n\nThis page shows you how to:\n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.\n\n\n\n\n\n\nInstall the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newt from source.\n\n\n\n\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nSee \nInstalling Previous Releases of Newt\n to install an earlier version of newt.\n\n\nNote:\n  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:\n\n\n\n\nUse the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newt tool.\n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newt Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\n\nDownload the public key for the runtimeco apt repo (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\n$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n\nAdd the repository for the binary and source packages to the \nmynewt.list\n apt source list file:\n\n\n$ sudo tee /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n\n\n\n\n\n\nUpdate the available packages: \n\n\n$ sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n\n\nInstalling the Latest Release of Newt from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package.\n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newt:\n\n\n$ sudo apt-get update\n$ sudo apt-get install newt\n\n\n\n\n\nNote:\n If you encounter build errors (such as missing \nsys/mman.h\n), please make sure you have a 32-bit glibc:\n\n\n$ sudo apt-get install gcc-multilib\n\n\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1.3.0-1_amd64.deb\n$ sudo dpkg -i newt_1.3.0-1_amd64.deb\n\n\n\n\n\n\nSee \nChecking the Installed Version of Newt\n to verify that you are using the installed version of newt.\n\n\n\n\nInstalling the Latest Release of Newt from a Source Package\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newt from source.\n\n\n\n\n\nDownload and unpack the newt source:\n\n\n\n\n$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_3_0_tag.tar.gz\n\n\n\n\n\n\n3. Run the build.sh to build the newt tool.\n\n\n$ cd mynewt-newt-mynewt_1_3_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_3_0_tag.tar.gz\n\n\n\n\n\n\n4. You should see the \nnewt/newt\n executable. Move the executable to a bin directory in your PATH:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.\n\n\n$ mv newt/newt $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt /usr/bin\n\n\n\n\n\n\n\n\n\n\n\n Checking the Installed Version of Newt\n\n\n\n1. Check which newt you are using and that the version is the latest release version.\n\n\n$ which newt\n/usr/bin/newt\n$ newt version\nApache Newt version: 1.3.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\n$ newt\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n  newt\n  newt help [\ncommand-name\n]\n    For help on \ncommand-name\n.  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  resign-image Re-sign an image.\n  run          build/create-image/download/debug \ntarget\n\n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the specified element type(s)\n  version      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt [command] --help\n for more information about a command.", 
             "title": "Install Newt on Linux"
         }, 
         {
             "location": "/newt/install/newt_linux/#installing-newt-on-linux", 
-            "text": "You can install the latest release (1.2.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.  This page shows you how to:    Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.    Install the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newt from source.    If you are installing on an amd64 platform, we recommend that you install from the binary package.  See  Installing Previous Releases of Newt  to install an earlier version of newt.  Note:   We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:   Use the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newt tool.", 
+            "text": "You can install the latest release (1.3.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.  This page shows you how to:    Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.    Install the latest release version of newt from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newt from source.    If you are installing on an amd64 platform, we recommend that you install from the binary package.  See  Installing Previous Releases of Newt  to install an earlier version of newt.  Note:   We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:   Use the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newt tool.", 
             "title": "Installing Newt on Linux"
         }, 
         {
             "location": "/newt/install/newt_linux/#setting-up-your-computer-to-use-apt-get-to-install-the-package", 
-            "text": "The newt Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Install the  apt-transport-https  package to use HTTPS to retrieve packages.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.   \nInstall the apt-transport-https package:  $ sudo apt-get update\n$ sudo apt-get install apt-transport-https   Download the public key for the runtimeco apt repo ( Note:  There is  a  -  after   apt-key add ):  $ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -   Add the repository for the binary and source packages to the  mynewt.list  apt source list file:  $ sudo tee /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF  \nUpdate the available packages:   $ sudo apt-get update   Note:  If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
+            "text": "The newt Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.    Download the public key for the runtimeco apt repo ( Note:  There is  a  -  after   apt-key add ):  $ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -   Add the repository for the binary and source packages to the  mynewt.list  apt source list file:  $ sudo tee /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF  \nUpdate the available packages:   $ sudo apt-get update   Note:  If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
             "title": "Setting Up Your Computer to use apt-get to Install the Package"
         }, 
         {
@@ -227,17 +227,17 @@
         }, 
         {
             "location": "/newt/install/newt_linux/#method-1-using-apt-get-to-upgrade-or-to-install", 
-            "text": "Run the following commands to upgrade or install the latest version of newt:  $ sudo apt-get update \n$ sudo apt-get install newt  Note:  If you encounter build errors (such as missing  sys/mman.h ), please make sure you have a 32-bit glibc:  $ sudo apt-get install gcc-multilib", 
+            "text": "Run the following commands to upgrade or install the latest version of newt:  $ sudo apt-get update\n$ sudo apt-get install newt  Note:  If you encounter build errors (such as missing  sys/mman.h ), please make sure you have a 32-bit glibc:  $ sudo apt-get install gcc-multilib", 
             "title": "Method 1: Using apt-get to Upgrade or to Install"
         }, 
         {
             "location": "/newt/install/newt_linux/#method-2-downloading-and-installing-the-debian-package-manually", 
-            "text": "Download and install the package manually.  $wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1.2.0-1_amd64.deb\n$sudo dpkg -i newt_1.2.0-1_amd64.deb  \nSee  Checking the Installed Version of Newt  to verify that you are using the installed version of newt.", 
+            "text": "Download and install the package manually.  $ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1.3.0-1_amd64.deb\n$ sudo dpkg -i newt_1.3.0-1_amd64.deb  \nSee  Checking the Installed Version of Newt  to verify that you are using the installed version of newt.", 
             "title": "Method 2: Downloading and Installing the Debian Package Manually"
         }, 
         {
             "location": "/newt/install/newt_linux/#installing-the-latest-release-of-newt-from-a-source-package", 
-            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.  \n1.  You need Go version 1.7.6 or higher to build Newt.  Currently, the latest Go version that Ubuntu installs is 1.6.  Run  go version  to check if you have Go 1.7.6 installed. You can download Go from  https://golang.org/dl/ .  \n2. Download and unpack the newt source:  $ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_2_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_2_0_tag.tar.gz  \n3. Run the build.sh to build the newt tool.  $ cd mynewt-newt-mynewt_1_2_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_2_0_tag.tar.gz  \n4. You should see the  newt/newt  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.  $ mv newt/newt $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:  $ mv newt/newt /usr/bin", 
+            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.   Download and unpack the newt source:   $ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz\n$ tar -xzf /tmp/mynewt_1_3_0_tag.tar.gz  \n3. Run the build.sh to build the newt tool.  $ cd mynewt-newt-mynewt_1_3_0_tag\n$ ./build.sh\n$ rm /tmp/mynewt_1_3_0_tag.tar.gz  \n4. You should see the  newt/newt  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the binary to your $GOPATH/bin directory.  $ mv newt/newt $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the binary to /usr/bin or a directory in your PATH:  $ mv newt/newt /usr/bin", 
             "title": "Installing the Latest Release of Newt from a Source Package"
         }, 
         {
@@ -13332,17 +13332,17 @@
         }, 
         {
             "location": "/newtmgr/install_linux/", 
-            "text": "Installing Newtmgr on Linux\n\n\nYou can install the latest release (1.2.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.   \n\n\nThis page shows you how to: \n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again. \n\n\n\n\n\n\nInstall the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newtmgr from source. \n\n\n\n\n\n\nSee \nInstalling Previous Releases of Newtgmr\n to install an earlier version of newtmgr.\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nNote:\n  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:  \n\n\n\n\nUse the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newtmgr tool. \n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newtmgr Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nInstall the \napt-transport-https\n package to use HTTPS to retrieve packages. \n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\n1. Install the apt-transport-https package:\n\n\n$sudo apt-get update\n$sudo apt-get install apt-transport-https\n\n\n\n\n\n\n2. Download the public key for the runtimeco apt repo  (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\nwget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n3. Add the repository for the binary packages to the \nmynewt.list\n apt source list file.\n\n\n$sudo -s\n[sudo] password for \nuser\n:\nroot$ cat \n /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\nroot$exit\n\n\n\n\n\nNote:\n Do not forget to exit the root shell.\n\n\n\n4. Verify the content of the source list file:\n\n\n$more /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\n\n\n\n\n\n\n5. Update the available packages:\n\n\n$sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n \n\n\nInstalling the Latest Release of Newtmgr from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package. \n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newtmgr:\n\n\n$ sudo apt-get update \n$ sudo apt-get install newtmgr\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1.2.0-1_amd64.deb\n$sudo dpkg -i newtmgr_1.2.0-1_amd64.deb\n\n\n\n\n\nSee \nChecking the Installed Version of Newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n\nInstalling the Latest Release Version of Newtmgr from Source\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.\n\n\n\n1. Download and install the latest version of \nGo\n. Newtmgr requires Go version 1.7.6 or higher.\n\n\n\n2. Create a Go workspace in the /tmp directory: \n\n\n$ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go\n\n\n\n\n\n\n3. Run \ngo get\n to download the newtmgr source.  Note that \ngo get\n pulls down the HEAD from the master branch in git, builds, and installs newtmgr.\n\n\n$ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n4. Check out the source from the latest release version:\n\n\n$ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_2_0_tag\nNote: checking out \nmynewt_1_2_0_tag\n.\n\n\n\n\n\n 5. Build newtmgr from the latest release version: \n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.\n\n\n\n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.\n\n\n\n\n Checking the Latest Version of Newtmgr is Installed\n\n\n\n1. Run \nwhich newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n2. Get information about the newtmgr tool:\n\n\n$newtmgr\nNewtmgr helps you manage remote devices running the Mynewt OS\n\nUsage:\n  newtmgr [flags]\n  newtmgr [command]\n\nAvailable Commands:\n  config      Read or write a config value on a device\n  conn        Manage newtmgr connection profiles\n  crash       Send a crash command to a device\n  datetime    Manage datetime on a device\n  echo        Send data to a device and display the echoed back data\n  fs          Access files on a device\n  help        Help about any command\n  image       Manage images on a device\n  log         Manage logs on a device\n  mpstat      Read mempool statistics from a device\n  reset       Perform a soft reset of a device\n  run         Run test procedures on a device\n  stat        Read statistics from a device\n  taskstat    Read task statistics from a device\n\nFlags:\n  -c, --conn string       connection profile to use\n  -h, --help              help for newtmgr\n  -l, --loglevel string   log level to use (default \ninfo\n)\n      --name string       name of target BLE device; overrides profile setting\n  -t, --timeout float     timeout in seconds (partial seconds allowed) (default 10)\n  -r, --tries int         total number of tries in case of timeout (default 1)\n\nUse \nnewtmgr [command] --help\n for more information about a command.", 
+            "text": "Installing Newtmgr on Linux\n\n\nYou can install the latest release (1.3.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.\n\n\nThis page shows you how to:\n\n\n\n\n\n\nSet up your computer to download Debian binary packages from the runtimeco APT repository.\n\n\nNote:\n The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again. \n\n\n\n\n\n\nInstall the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.\n\n\n\n\n\n\nDownload, build, and install the latest release version of newtmgr from source.\n\n\n\n\n\n\nSee \nInstalling Previous Releases of Newtgmr\n to install an earlier version of newtmgr.\n\n\nIf you are installing on an amd64 platform, we recommend that you install from the binary package.\n\n\nNote:\n  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.\n\n\nNote:\n See \nSetting Up a Go Environment to Contribute to Newt and Newtmgr Tools\n if you want to:\n\n\n\n\nUse the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.\n\n\nContribute to the newtmgr tool. \n\n\n\n\n\n\nSetting Up Your Computer to use apt-get to Install the Package\n\n\nThe newtmgr Debian packages are stored in a private APT repository on \nhttps://github/runtimeco/debian-mynewt\n.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:\n\n\nNote\n: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.\n\n\n\n\nDownload the public key for the runtimeco APT repository and import the key into the apt keychain.\n\n\nAdd the repository for the binary and source packages to the apt source list.\n\n\n\n\n\n1. Download the public key for the runtimeco apt repo  (\nNote:\n There is  a \n-\n after  \napt-key add\n):\n\n\nwget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -\n\n\n\n\n\n\n2. Add the repository for the binary packages to the \nmynewt.list\n apt source list file.\n\n\n$ sudo -s\n[sudo] password for \nuser\n:\n# cat \n /etc/apt/sources.list.d/mynewt.list \nEOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n# exit\n\n\n\n\n\nNote:\n Do not forget to exit the root shell.\n\n\n\n4. Verify the content of the source list file:\n\n\n$ cat /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\n\n\n\n\n\n\n5. Update the available packages:\n\n\n$ sudo apt-get update\n\n\n\n\n\n\n\nNote:\n If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.\n\n\nW: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404\n\n\n\n\n\n \n\n\nInstalling the Latest Release of Newtmgr from a Binary Package\n\n\nYou can use either apt-get to install the package, or manually download and install the Debian binary package. \n\n\n\n\nMethod 1: Using apt-get to Upgrade or to Install\n\n\nRun the following commands to upgrade or install the latest version of newtmgr:\n\n\n$ sudo apt-get update\n$ sudo apt-get install newtmgr\n\n\n\n\n\nMethod 2: Downloading and Installing the Debian Package Manually\n\n\nDownload and install the package manually.\n\n\n$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1.3.0-1_amd64.deb\n$ sudo dpkg -i newtmgr_1.3.0-1_amd64.deb\n\n\n\n\n\nSee \nChecking the Installed Version of Newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n\nInstalling the Latest Release Version of Newtmgr from Source\n\n\nIf you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.\n\n\n\n1. Download and install the latest version of \nGo\n if it not already available on your distro. Newtmgr requires Go version 1.7.6 or higher.\n\n\n\n2. Create a Go workspace in the /tmp directory: \n\n\n$ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go\n\n\n\n\n\n\n3. Run \ngo get\n to download the newtmgr source.  Note that \ngo get\n pulls down the HEAD from the master branch in git, builds, and installs newtmgr.\n\n\n$ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n4. Check out the source from the latest release version:\n\n\n$ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_3_0_tag\nNote: checking out \nmynewt_1_3_0_tag\n.\n\n\n\n\n\n 5. Build newtmgr from the latest release version: \n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr\n\n\n\n\n\n\n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.\n\n\n\n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.\n\n\n\n\n Checking the Latest Version of Newtmgr is Installed\n\n\n\n1. Run \nwhich newtmgr\n to verify that you are using the installed version of newtmgr.\n\n\n\n2. Get information about the newtmgr tool:\n\n\n$ newtmgr\nNewtmgr helps you manage remote devices running the Mynewt OS\n\nUsage:\n  newtmgr [flags]\n  newtmgr [command]\n\nAvailable Commands:\n  config      Read or write a config value on a device\n  conn        Manage newtmgr connection profiles\n  crash       Send a crash command to a device\n  datetime    Manage datetime on a device\n  echo        Send data to a device and display the echoed back data\n  fs          Access files on a device\n  help        Help about any command\n  image       Manage images on a device\n  log         Manage logs on a device\n  mpstat      Read mempool statistics from a device\n  reset       Perform a soft reset of a device\n  run         Run test procedures on a device\n  stat        Read statistics from a device\n  taskstat    Read task statistics from a device\n\nFlags:\n  -c, --conn string       connection profile to use\n  -h, --help              help for newtmgr\n  -l, --loglevel string   log level to use (default \ninfo\n)\n      --name string       name of target BLE device; overrides profile setting\n  -t, --timeout float     timeout in seconds (partial seconds allowed) (default 10)\n  -r, --tries int         total number of tries in case of timeout (default 1)\n\nUse \nnewtmgr [command] --help\n for more information about a command.", 
             "title": "Install Newtmgr On Linux"
         }, 
         {
             "location": "/newtmgr/install_linux/#installing-newtmgr-on-linux", 
-            "text": "You can install the latest release (1.2.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.     This page shows you how to:     Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.     Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newtmgr from source.     See  Installing Previous Releases of Newtgmr  to install an earlier version of newtmgr.  If you are installing on an amd64 platform, we recommend that you install from the binary package.  Note:   We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:     Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newtmgr tool.", 
+            "text": "You can install the latest release (1.3.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.  This page shows you how to:    Set up your computer to download Debian binary packages from the runtimeco APT repository.  Note:  The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.     Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.    Download, build, and install the latest release version of newtmgr from source.    See  Installing Previous Releases of Newtgmr  to install an earlier version of newtmgr.  If you are installing on an amd64 platform, we recommend that you install from the binary package.  Note:   We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.  Note:  See  Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools  if you want to:   Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.  Contribute to the newtmgr tool.", 
             "title": "Installing Newtmgr on Linux"
         }, 
         {
             "location": "/newtmgr/install_linux/#setting-up-your-computer-to-use-apt-get-to-install-the-package", 
-            "text": "The newtmgr Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Install the  apt-transport-https  package to use HTTPS to retrieve packages.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.   \n1. Install the apt-transport-https package:  $sudo apt-get update\n$sudo apt-get install apt-transport-https  \n2. Download the public key for the runtimeco apt repo  ( Note:  There is  a  -  after   apt-key add ):  wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -  \n3. Add the repository for the binary packages to the  mynewt.list  apt source list file.  $sudo -s\n[sudo] password for  user :\nroot$ cat   /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\nroot$exit  Note:  Do not forget to exit the root shell.  \n4. Verify the content of the source list file:  $more /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main  \n5. Update the available packages:  $sudo apt-get update   Note:  If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
+            "text": "The newtmgr Debian packages are stored in a private APT repository on  https://github/runtimeco/debian-mynewt .   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:  Note : You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.   Download the public key for the runtimeco APT repository and import the key into the apt keychain.  Add the repository for the binary and source packages to the apt source list.   \n1. Download the public key for the runtimeco apt repo  ( Note:  There is  a  -  after   apt-key add ):  wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -  \n2. Add the repository for the binary packages to the  mynewt.list  apt source list file.  $ sudo -s\n[sudo] password for  user :\n# cat   /etc/apt/sources.list.d/mynewt.list  EOF\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main\nEOF\n# exit  Note:  Do not forget to exit the root shell.  \n4. Verify the content of the source list file:  $ cat /etc/apt/sources.list.d/mynewt.list\ndeb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main  \n5. Update the available packages:  $ sudo apt-get update   Note:  If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.  W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404", 
             "title": "Setting Up Your Computer to use apt-get to Install the Package"
         }, 
         {
@@ -13352,17 +13352,17 @@
         }, 
         {
             "location": "/newtmgr/install_linux/#method-1-using-apt-get-to-upgrade-or-to-install", 
-            "text": "Run the following commands to upgrade or install the latest version of newtmgr:  $ sudo apt-get update \n$ sudo apt-get install newtmgr", 
+            "text": "Run the following commands to upgrade or install the latest version of newtmgr:  $ sudo apt-get update\n$ sudo apt-get install newtmgr", 
             "title": "Method 1: Using apt-get to Upgrade or to Install"
         }, 
         {
             "location": "/newtmgr/install_linux/#method-2-downloading-and-installing-the-debian-package-manually", 
-            "text": "Download and install the package manually.  $wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1.2.0-1_amd64.deb\n$sudo dpkg -i newtmgr_1.2.0-1_amd64.deb  See  Checking the Installed Version of Newtmgr  to verify that you are using the installed version of newtmgr.", 
+            "text": "Download and install the package manually.  $ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1.3.0-1_amd64.deb\n$ sudo dpkg -i newtmgr_1.3.0-1_amd64.deb  See  Checking the Installed Version of Newtmgr  to verify that you are using the installed version of newtmgr.", 
             "title": "Method 2: Downloading and Installing the Debian Package Manually"
         }, 
         {
             "location": "/newtmgr/install_linux/#installing-the-latest-release-version-of-newtmgr-from-source", 
-            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.  \n1. Download and install the latest version of  Go . Newtmgr requires Go version 1.7.6 or higher.  \n2. Create a Go workspace in the /tmp directory:   $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n3. Run  go get  to download the newtmgr source.  Note that  go get  pulls down the HEAD from the master branch in git, builds, and installs newtmgr.  $ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr  \n4. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_2_0_tag\nNote: checking out  mynewt_1_2_0_tag .   5. Build newtmgr from the latest release version:   $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr  \n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.  \n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.", 
+            "text": "If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.  \n1. Download and install the latest version of  Go  if it not already available on your distro. Newtmgr requires Go version 1.7.6 or higher.  \n2. Create a Go workspace in the /tmp directory:   $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n3. Run  go get  to download the newtmgr source.  Note that  go get  pulls down the HEAD from the master branch in git, builds, and installs newtmgr.  $ go get mynewt.apache.org/newtmgr/newtmgr\n$ ls -l /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user staff  17884488 Jul 29 16:25 /tmp/go/bin/newtmgr  \n4. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout mynewt_1_3_0_tag\nNote: checking out  mynewt_1_3_0_tag .   5. Build newtmgr from the latest release version:   $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr\n-rwxr-xr-x  1 user  staff  17888680 Jul 29 16:28 /tmp/go/bin/newtmgr  \n6. If you have a Go workspace, remember to reset your GOPATH to your Go workspace.  \n7. Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.", 
             "title": "Installing the Latest Release Version of Newtmgr from Source"
         }, 
         {
diff --git a/newt/install/newt_linux/index.html b/newt/install/newt_linux/index.html
index 600f53840..df1843acf 100644
--- a/newt/install/newt_linux/index.html
+++ b/newt/install/newt_linux/index.html
@@ -434,7 +434,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                         
                         
                             <h2 id="installing-newt-on-linux">Installing Newt on Linux</h2>
-<p>You can install the latest release (1.2.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.</p>
+<p>You can install the latest release (1.3.0) of the newt tool from a Debian binary package (amd64). You can also download and build the latest release version of newt from source.</p>
 <p>This page shows you how to:</p>
 <ol>
 <li>
@@ -450,7 +450,7 @@ <h2 id="installing-newt-on-linux">Installing Newt on Linux</h2>
 </ol>
 <p>If you are installing on an amd64 platform, we recommend that you install from the binary package.</p>
 <p>See <a href="../prev_releases/">Installing Previous Releases of Newt</a> to install an earlier version of newt.</p>
-<p><strong>Note:</strong>  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
+<p><strong>Note:</strong>  We have tested the newt tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
 <p><strong>Note:</strong> See <a href="../../../faq/go_env">Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools</a> if you want to:</p>
 <ul>
 <li>Use the newt tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.</li>
@@ -461,17 +461,9 @@ <h3 id="setting-up-your-computer-to-use-apt-get-to-install-the-package">Setting
 <p>The newt Debian packages are stored in a private APT repository on <strong>https://github/runtimeco/debian-mynewt</strong>.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:</p>
 <p><strong>Note</strong>: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.</p>
 <ol>
-<li>Install the <code>apt-transport-https</code> package to use HTTPS to retrieve packages. </li>
 <li>Download the public key for the runtimeco APT repository and import the key into the apt keychain.</li>
 <li>Add the repository for the binary and source packages to the apt source list.</li>
 </ol>
-<p><br>
-Install the apt-transport-https package:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
-$ sudo apt-get install apt-transport-https
-</pre></div>
-
-
 <p><br></p>
 <p>Download the public key for the runtimeco apt repo (<strong>Note:</strong> There is  a <code>-</code> after  <code>apt-key add</code>):</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -
@@ -493,7 +485,7 @@ <h3 id="setting-up-your-computer-to-use-apt-get-to-install-the-package">Setting
 
 
 <p><br>
-<strong>Note:</strong> If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
+<strong>Note:</strong> If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404
 </pre></div>
 
@@ -504,7 +496,7 @@ <h2 id="installing-the-latest-release-of-newt-from-a-binary-package">Installing
 <p><br></p>
 <h4 id="method-1-using-apt-get-to-upgrade-or-to-install">Method 1: Using apt-get to Upgrade or to Install</h4>
 <p>Run the following commands to upgrade or install the latest version of newt:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update 
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
 $ sudo apt-get install newt
 </pre></div>
 
@@ -517,8 +509,8 @@ <h4 id="method-1-using-apt-get-to-upgrade-or-to-install">Method 1: Using apt-get
 <p><br></p>
 <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method 2: Downloading and Installing the Debian Package Manually</h4>
 <p>Download and install the package manually.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1.2.0-1_amd64.deb
-$sudo dpkg -i newt_1.2.0-1_amd64.deb
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1.3.0-1_amd64.deb
+$ sudo dpkg -i newt_1.3.0-1_amd64.deb
 </pre></div>
 
 
@@ -526,21 +518,21 @@ <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method
 See <a href="#check">Checking the Installed Version of Newt</a> to verify that you are using the installed version of newt.</p>
 <p><br></p>
 <h3 id="installing-the-latest-release-of-newt-from-a-source-package">Installing the Latest Release of Newt from a Source Package</h3>
-<p>If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.</p>
-<p><br>
-1.  You need Go version 1.7.6 or higher to build Newt.  Currently, the latest Go version that Ubuntu installs is 1.6.  Run <code>go version</code> to check if you have Go 1.7.6 installed. You can download Go from <a href="https://golang.org/dl/">https://golang.org/dl/</a>.</p>
-<p><br>
-2. Download and unpack the newt source:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_2_0_tag.tar.gz
-$ tar -xzf /tmp/mynewt_1_2_0_tag.tar.gz
+<p>If you are running Linux on a different architecture, you can build and install the latest release version of newt from source.
+<br></p>
+<ol>
+<li>Download and unpack the newt source:</li>
+</ol>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz
+$ tar -xzf /tmp/mynewt_1_3_0_tag.tar.gz
 </pre></div>
 
 
 <p><br>
 3. Run the build.sh to build the newt tool.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd mynewt-newt-mynewt_1_2_0_tag
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd mynewt-newt-mynewt_1_3_0_tag
 $ ./build.sh
-$ rm /tmp/mynewt_1_2_0_tag.tar.gz
+$ rm /tmp/mynewt_1_3_0_tag.tar.gz
 </pre></div>
 
 
@@ -569,7 +561,7 @@ <h3 id="checking-the-installed-version-of-newt"><a name="check"></a> Checking th
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ which newt
 /usr/bin/newt
 $ newt version
-Apache Newt version: 1.2.0
+Apache Newt version: 1.3.0
 </pre></div>
 
 
diff --git a/newtmgr/install_linux/index.html b/newtmgr/install_linux/index.html
index a5fcd487f..b88eecb68 100644
--- a/newtmgr/install_linux/index.html
+++ b/newtmgr/install_linux/index.html
@@ -407,8 +407,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                         
                         
                             <h2 id="installing-newtmgr-on-linux">Installing Newtmgr on Linux</h2>
-<p>You can install the latest release (1.2.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.   </p>
-<p>This page shows you how to: </p>
+<p>You can install the latest release (1.3.0) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.</p>
+<p>This page shows you how to:</p>
 <ol>
 <li>
 <p>Set up your computer to download Debian binary packages from the runtimeco APT repository.</p>
@@ -418,13 +418,13 @@ <h2 id="installing-newtmgr-on-linux">Installing Newtmgr on Linux</h2>
 <p>Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.</p>
 </li>
 <li>
-<p>Download, build, and install the latest release version of newtmgr from source. </p>
+<p>Download, build, and install the latest release version of newtmgr from source.</p>
 </li>
 </ol>
 <p>See <a href="../../newtmgr/prev_releases">Installing Previous Releases of Newtgmr</a> to install an earlier version of newtmgr.</p>
 <p>If you are installing on an amd64 platform, we recommend that you install from the binary package.</p>
-<p><strong>Note:</strong>  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
-<p><strong>Note:</strong> See <a href="../../faq/go_env">Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools</a> if you want to:  </p>
+<p><strong>Note:</strong>  We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 1704.  Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.</p>
+<p><strong>Note:</strong> See <a href="../../faq/go_env">Setting Up a Go Environment to Contribute to Newt and Newtmgr Tools</a> if you want to:</p>
 <ul>
 <li>Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.</li>
 <li>Contribute to the newtmgr tool. </li>
@@ -434,50 +434,42 @@ <h3 id="setting-up-your-computer-to-use-apt-get-to-install-the-package">Setting
 <p>The newtmgr Debian packages are stored in a private APT repository on <strong>https://github/runtimeco/debian-mynewt</strong>.   To use apt-get, you must set up the following on your computer to retrieve packages from the repository:</p>
 <p><strong>Note</strong>: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.</p>
 <ol>
-<li>Install the <code>apt-transport-https</code> package to use HTTPS to retrieve packages. </li>
 <li>Download the public key for the runtimeco APT repository and import the key into the apt keychain.</li>
 <li>Add the repository for the binary and source packages to the apt source list.</li>
 </ol>
 <p><br>
-1. Install the apt-transport-https package:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$sudo apt-get update
-$sudo apt-get install apt-transport-https
-</pre></div>
-
-
-<p><br>
-2. Download the public key for the runtimeco apt repo  (<strong>Note:</strong> There is  a <code>-</code> after  <code>apt-key add</code>):</p>
+1. Download the public key for the runtimeco apt repo  (<strong>Note:</strong> There is  a <code>-</code> after  <code>apt-key add</code>):</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -
 </pre></div>
 
 
 <p><br>
-3. Add the repository for the binary packages to the <code>mynewt.list</code> apt source list file.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$sudo -s
+2. Add the repository for the binary packages to the <code>mynewt.list</code> apt source list file.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo -s
 [sudo] password for &lt;user&gt;:
-root$ cat &gt; /etc/apt/sources.list.d/mynewt.list &lt;&lt;EOF
+# cat &gt; /etc/apt/sources.list.d/mynewt.list &lt;&lt;EOF
 deb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main
 EOF
-root$exit
+# exit
 </pre></div>
 
 
 <p><strong>Note:</strong> Do not forget to exit the root shell.</p>
 <p><br>
 4. Verify the content of the source list file:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$more /etc/apt/sources.list.d/mynewt.list
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cat /etc/apt/sources.list.d/mynewt.list
 deb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main
 </pre></div>
 
 
 <p><br>
 5. Update the available packages:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$sudo apt-get update
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
 </pre></div>
 
 
 <p><br>
-<strong>Note:</strong> If you are not using Ubuntu version 16, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
+<strong>Note:</strong> If you are not using Ubuntu version 1704, you may see the following errors.  We have provided instructions on how to manually download and install the binary package.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources  HttpError404
 </pre></div>
 
@@ -488,15 +480,15 @@ <h3 id="installing-the-latest-release-of-newtmgr-from-a-binary-package">Installi
 <p><br></p>
 <h4 id="method-1-using-apt-get-to-upgrade-or-to-install">Method 1: Using apt-get to Upgrade or to Install</h4>
 <p>Run the following commands to upgrade or install the latest version of newtmgr:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update 
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ sudo apt-get update
 $ sudo apt-get install newtmgr
 </pre></div>
 
 
 <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method 2: Downloading and Installing the Debian Package Manually</h4>
 <p>Download and install the package manually.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1.2.0-1_amd64.deb
-$sudo dpkg -i newtmgr_1.2.0-1_amd64.deb
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1.3.0-1_amd64.deb
+$ sudo dpkg -i newtmgr_1.3.0-1_amd64.deb
 </pre></div>
 
 
@@ -505,7 +497,7 @@ <h4 id="method-2-downloading-and-installing-the-debian-package-manually">Method
 <h3 id="installing-the-latest-release-version-of-newtmgr-from-source">Installing the Latest Release Version of Newtmgr from Source</h3>
 <p>If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.</p>
 <p><br>
-1. Download and install the latest version of <a href="https://golang.org/dl/">Go</a>. Newtmgr requires Go version 1.7.6 or higher.</p>
+1. Download and install the latest version of <a href="https://golang.org/dl/">Go</a> if it not already available on your distro. Newtmgr requires Go version 1.7.6 or higher.</p>
 <p><br>
 2. Create a Go workspace in the /tmp directory: </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd /tmp
@@ -526,8 +518,8 @@ <h3 id="installing-the-latest-release-version-of-newtmgr-from-source">Installing
 <p><br>
 4. Check out the source from the latest release version:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ cd src/mynewt.apache.org/newtmgr
-$ git checkout mynewt_1_2_0_tag
-Note: checking out &#39;mynewt_1_2_0_tag&#39;.
+$ git checkout mynewt_1_3_0_tag
+Note: checking out &#39;mynewt_1_3_0_tag&#39;.
 </pre></div>
 
 
@@ -549,7 +541,7 @@ <h3 id="checking-the-latest-version-of-newtmgr-is-installed"><a name="check"></a
 1. Run <code>which newtmgr</code> to verify that you are using the installed version of newtmgr.</p>
 <p><br>
 2. Get information about the newtmgr tool:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$newtmgr
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ newtmgr
 Newtmgr helps you manage remote devices running the Mynewt OS
 
 Usage:


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services