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 01:56:43 UTC

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

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

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 7ad75092b..66631a75a 100644
--- a/latest/mkdocs/search_index.json
+++ b/latest/mkdocs/search_index.json
@@ -242,7 +242,7 @@
         }, 
         {
             "location": "/newt/install/newt_windows/", 
-            "text": "Installing Newt on Windows\n\n\nYou can develop and build Mynewt OS applications for your target boards on the Windows platform.  This guide shows you how to install the latest release version of newt from binary or from source.  The tool is written in Go (golang).\n\n\nIn Windows, we use MinGW as the development environment to build and run Mynewt OS applications for target boards. MinGW runs the bash shell and provides a Unix-like environment. This provides a uniform way to build Mynewt OS applications. The Mynewt documentation and tutorials use Unix commands and you can use the same Unix commands on MinGW to follow the tutorials. The documentation will note any commands or behaviors that are specific to Windows.\n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall MSYS2/MinGW. \n\n\nInstall Git.\n\n\nInstall latest release (1.2.0) of newt from binary.\n\n\nInstall latest release of newt from source.\n\n\n\n\nSee \nInstalling Previous Relea
 ses of Newt\n to install an earlier version of newt. You still need to set up your MinGW development environment.\n\n\nNote:\n If you would like to contribute to the newt tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\n\n\nInstalling MSYS2/MinGW\n\n\nMSYS2/MinGW provides a bash shell and tools to build applications that run on Windows. It includes three subsystems:\n\n\n\n\nMSYS2 toolchain to build POSIX applications that run on Windows. \n\n\nMinGW32 toolchains to build 32 bit native Windows applications.  \n\n\nMinGW64 toolchains to build 64 bit native Windows applications.  \n\n\n\n\nThe subsystems run the bash shell and provide a Unix-like environment. You can also run Windows applications from the shell. We will use the MinGW subsystem.\n\n\nNote:\n You can skip this installation step if you already have MinGW installed (from an earlier MSYS2/MinGW or Git Bash installation), but you must list the \nbin\n path for your installation in your W
 indows Path. For example: if you installed MSYS2/MinGW in the \n C:\\msys64 \n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. If you are using Windows 10 WSL, ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\nTo install and setup MSYS2 and MinGW:\n\n\n\n\nDownload and run the \nMSYS2 installer\n.  Select the 64 bit version if you are running on a 64 bit platform. Follow the prompts and check the \nRun MSYS2 now\n checkbox on the \nInstallation Complete\n dialog. \n\n\n\n\nIn the MSYS2 terminal, run the \npacman -Syuu\n command. If you get a message to run the update again, close the terminal and run the \npacman -Syuu\n command in a new terminal. \n\n\nTo start a new MSYS2 terminal, select the \"MSYS2 MSYS\" application from the Windows start menu.\n\n\n\n\n\n\nAdd a new user variable named \nMSYS2_PATH_TYPE\n and set the value to \ninherit\n in your Windows environment. This enables the MSYS2 and MinGW bash to inherit y
 our Windows user \nPath\n values. \n\n\nTo add the variable,  select properties for your computer \n Advanced system settings \n Environment Variables \n New\n\n\n\n\n\n\nAdd the MinGW \nbin\n path to your Windows Path. For example: if you install MSYS2/MinGW in the \nC:\\msys64\n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. \n\n\nNote:\n If you are using Windows 10 WSL,  ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\n\n\n\n\nRun the \npacman -Su vim\n command to install the vim editor. \n\n\nNote:\nYou can also use a Windows editor. You can access your files from the \nC:\\\nmsys-install-folder\n\\home\\\nusername\n folder, where \nmsys-install-folder\n is the folder you installed MSYS2 in. For example, if you installed MSYS2 in the \nmsys64\n folder, your files are stored in \nC:\\msys64\\home\\\nusername\n\n\n\n\n\n\nRun the  \npacman -Su tar\n command to install the tar tool. \n\n\n\n\n\n\nYou will need to start
  a MinGW terminal to run the commands specified in the Mynewt documentation and  tutorials.  To start a MinGW terminal, select the \"MSYS2 Mingw\" application from the start Menu (you can use either MinGW32 or MinGW64). \nIn Windows, we use the MinGW subsystem to build  Mynewt tools and applications.  \n\n\nInstalling Git for Windows\n\n\nDownload and install \nGit for Windows\n if it is not already installed.\n\n\nInstalling the Latest Release of the Newt Tool from Binary\n\n\nYou can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform. \n\n\n\n1. Start a MinGW terminal.\n\n\n\n2. Download the newt binary tar file:\n\n\n$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1_2_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the c
 urrent newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C $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 setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newt. See \nChecking the Installed Version\n.\n\n\n\n\nInstalling the Latest Release of Newt From Source\n\n\nIf you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.\n\n\n\n1.  If you do not have Go installed, download and install the latest version of \nGo\n. Newt requires Go version 1.7.6 or higher.\n\n\n\n2. Start a MinGw terminal.\n\n\n\n3. 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 -xz
 f /tmp/mynewt_1_2_0_tag.tar.gz\n\n\n\n\n\n\n4. 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\n5. You should see the \nnewt/newt.exe\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 executable to the $GOPATH/bin directory.\n\n\n$ mv newt/newt.exe $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 executable to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt.exe /usr/bin\n\n\n\n\n\n\n\n\n\n\n\nChecking the Installed Version\n\n\n\n1. Check the version of newt:\n\n\n$ newt version\nApache Newt version: 1.2.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\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 \n
 newt [command] --help\n for more information about a command.", 
+            "text": "Installing Newt on Windows\n\n\nYou can develop and build Mynewt OS applications for your target boards on the Windows platform.  This guide shows you how to install the latest release version of newt from binary or from source.  The tool is written in Go (golang).\n\n\nIn Windows, we use MinGW as the development environment to build and run Mynewt OS applications for target boards. MinGW runs the bash shell and provides a Unix-like environment. This provides a uniform way to build Mynewt OS applications. The Mynewt documentation and tutorials use Unix commands and you can use the same Unix commands on MinGW to follow the tutorials. The documentation will note any commands or behaviors that are specific to Windows.\n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall MSYS2/MinGW. \n\n\nInstall Git.\n\n\nInstall latest release (1.2.0) of newt from binary.\n\n\nInstall latest release of newt from source.\n\n\n\n\nSee \nInstalling Previous Relea
 ses of Newt\n to install an earlier version of newt. You still need to set up your MinGW development environment.\n\n\nNote:\n If you would like to contribute to the newt tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\n\n\nInstalling MSYS2/MinGW\n\n\nMSYS2/MinGW provides a bash shell and tools to build applications that run on Windows. It includes three subsystems:\n\n\n\n\nMSYS2 toolchain to build POSIX applications that run on Windows. \n\n\nMinGW32 toolchains to build 32 bit native Windows applications.  \n\n\nMinGW64 toolchains to build 64 bit native Windows applications.  \n\n\n\n\nThe subsystems run the bash shell and provide a Unix-like environment. You can also run Windows applications from the shell. We will use the MinGW subsystem.\n\n\nNote:\n You can skip this installation step if you already have MinGW installed (from an earlier MSYS2/MinGW or Git Bash installation), but you must list the \nbin\n path for your installation in your W
 indows Path. For example: if you installed MSYS2/MinGW in the \n C:\\msys64 \n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. If you are using Windows 10 WSL, ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\nTo install and setup MSYS2 and MinGW:\n\n\n\n\nDownload and run the \nMSYS2 installer\n.  Select the 64 bit version if you are running on a 64 bit platform. Follow the prompts and check the \nRun MSYS2 now\n checkbox on the \nInstallation Complete\n dialog. \n\n\n\n\nIn the MSYS2 terminal, run the \npacman -Syuu\n command. If you get a message to run the update again, close the terminal and run the \npacman -Syuu\n command in a new terminal. \n\n\nTo start a new MSYS2 terminal, select the \"MSYS2 MSYS\" application from the Windows start menu.\n\n\n\n\n\n\nAdd a new user variable named \nMSYS2_PATH_TYPE\n and set the value to \ninherit\n in your Windows environment. This enables the MSYS2 and MinGW bash to inherit y
 our Windows user \nPath\n values. \n\n\nTo add the variable,  select properties for your computer \n Advanced system settings \n Environment Variables \n New\n\n\n\n\n\n\nAdd the MinGW \nbin\n path to your Windows Path. For example: if you install MSYS2/MinGW in the \nC:\\msys64\n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. \n\n\nNote:\n If you are using Windows 10 WSL,  ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\n\n\n\n\nRun the \npacman -Su vim\n command to install the vim editor. \n\n\nNote:\nYou can also use a Windows editor. You can access your files from the \nC:\\\nmsys-install-folder\n\\home\\\nusername\n folder, where \nmsys-install-folder\n is the folder you installed MSYS2 in. For example, if you installed MSYS2 in the \nmsys64\n folder, your files are stored in \nC:\\msys64\\home\\\nusername\n\n\n\n\n\n\nRun the  \npacman -Su tar\n command to install the tar tool. \n\n\n\n\n\n\nYou will need to start
  a MinGW terminal to run the commands specified in the Mynewt documentation and  tutorials.  To start a MinGW terminal, select the \"MSYS2 Mingw\" application from the start Menu (you can use either MinGW32 or MinGW64). \nIn Windows, we use the MinGW subsystem to build  Mynewt tools and applications.  \n\n\nInstalling Git for Windows\n\n\nDownload and install \nGit for Windows\n if it is not already installed.\n\n\nInstalling the Latest Release of the Newt Tool from Binary\n\n\nYou can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform. \n\n\n\n1. Start a MinGW terminal.\n\n\n\n2. Download the newt binary tar file:\n\n\n$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1_3_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the c
 urrent newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C $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 setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newt. See \nChecking the Installed Version\n.\n\n\n\n\nInstalling the Latest Release of Newt From Source\n\n\nIf you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.\n\n\n\n1.  If you do not have Go installed, download and install the latest version of \nGo\n. Newt requires Go version 1.7.6 or higher.\n\n\n\n2. Start a MinGw terminal.\n\n\n\n3. Download and unpack the newt source:\n\n\n$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz\n$ tar -xz
 f /tmp/mynewt_1_3_0_tag.tar.gz\n\n\n\n\n\n\n4. 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\n5. You should see the \nnewt/newt.exe\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 executable to the $GOPATH/bin directory.\n\n\n$ mv newt/newt.exe $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 executable to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt.exe /usr/bin\n\n\n\n\n\n\n\n\n\n\n\nChecking the Installed Version\n\n\n\n1. Check the version of newt:\n\n\n$ newt version\nApache Newt version: 1.3.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\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 \n
 newt [command] --help\n for more information about a command.", 
             "title": "Install Newt on Windows"
         }, 
         {
@@ -262,12 +262,12 @@
         }, 
         {
             "location": "/newt/install/newt_windows/#installing-the-latest-release-of-the-newt-tool-from-binary", 
-            "text": "You can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform.   \n1. Start a MinGW terminal.  \n2. Download the newt binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1_2_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newt. See  Checking the Installed Version .", 
+            "text": "You can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform.   \n1. Start a MinGW terminal.  \n2. Download the newt binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1_3_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newt. See  Checking the Installed Version .", 
             "title": "Installing the Latest Release of the Newt Tool from Binary"
         }, 
         {
             "location": "/newt/install/newt_windows/#installing-the-latest-release-of-newt-from-source", 
-            "text": "If you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.  \n1.  If you do not have Go installed, download and install the latest version of  Go . Newt requires Go version 1.7.6 or higher.  \n2. Start a MinGw terminal.  \n3. 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  \n4. 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  \n5. You should see the  newt/newt.exe  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the executable to the $GOPATH/bin directory.  $ mv newt/newt.exe $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the executable to /usr
 /bin or a directory in your PATH:  $ mv newt/newt.exe /usr/bin", 
+            "text": "If you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.  \n1.  If you do not have Go installed, download and install the latest version of  Go . Newt requires Go version 1.7.6 or higher.  \n2. Start a MinGw terminal.  \n3. 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  \n4. 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  \n5. You should see the  newt/newt.exe  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the executable to the $GOPATH/bin directory.  $ mv newt/newt.exe $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the executable to /usr
 /bin or a directory in your PATH:  $ mv newt/newt.exe /usr/bin", 
             "title": "Installing the Latest Release of Newt From Source"
         }, 
         {
@@ -13367,22 +13367,22 @@
         }, 
         {
             "location": "/newtmgr/install_windows/", 
-            "text": "Installing Newtmgr on Windows\n\n\nNote\n: Newtmgr 1.2 on Windows will be released in 1.2.1 patch release. If you want to use newtmgr on Windows, please use Apache Mynewt 1.1.0 release.\n\n\nThis guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).\n\n\nIt assumes that you have already installed the \nnewt tool on Windows\n and have the Windows development environment set up.  \n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall latest release of newtmgr from binary.\n\n\nInstall latest release of newtmgr from source.\n\n\n\n\nSee \nInstalling Previous Releases of Newtmgr\n to install an earlier version of newtgmr.\n\n\nNote:\n If you would like to contribute to the newtmgr tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\nInstalling the Latest Release of Newtmgr Tool from Binary\n\n\nYou can install the latest release of newtmgr from 
 binary. It has been tested on Windows 10 64 bit platform.\n\n\n\n1. Start a MinGW terminal.  \n\n\n\n2. Download the newtmgr binary tar file:\n\n\n$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1_2_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newtmgr. See \nChecking the Installed Version\n.\n\n\n\n\n\nInstalling the Latest Releas
 e of Newtmgr from Source\n\n\nIf you have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal. \n\n\n\n3. 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\n4. 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\n\n\n\n\nNote\n If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step: \n\n\n# github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice\n\n\n\n\n\n\n5. 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\n6. Build newtmgr from the latest release version:\n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe\n\n\n\n\n\n\n7. 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\nChecking the Installed Version\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 [com
 mand] --help\n for more information about a command.", 
+            "text": "Installing Newtmgr on Windows\n\n\nThis guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).\n\n\nIt assumes that you have already installed the \nnewt tool on Windows\n and have the Windows development environment set up.  \n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall latest release of newtmgr from binary.\n\n\nInstall latest release of newtmgr from source.\n\n\n\n\nSee \nInstalling Previous Releases of Newtmgr\n to install an earlier version of newtgmr.\n\n\nNote:\n If you would like to contribute to the newtmgr tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\nInstalling the Latest Release of Newtmgr Tool from Binary\n\n\nYou can install the latest release of newtmgr from binary. It has been tested on Windows 10 64 bit platform.\n\n\n\n1. Start a MinGW terminal.  \n\n\n\n2. Download the newtmgr binary tar file:\n\n\n$ wget -P
  /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1_3_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newtmgr. See \nChecking the Installed Version\n.\n\n\n\n\n\nInstalling the Latest Release of Newtmgr from Source\n\n\nIf you have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal. \n\n\n\n3. 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\n4. 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\n\n\n\n\nNote\n If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step: \n\n\n# github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice\n\n\n\n\n\n\n5. 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\n6. Build ne
 wtmgr from the latest release version:\n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe\n\n\n\n\n\n\n7. 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\nChecking the Installed Version\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 d
 ata\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 Windows"
         }, 
         {
             "location": "/newtmgr/install_windows/#installing-newtmgr-on-windows", 
-            "text": "Note : Newtmgr 1.2 on Windows will be released in 1.2.1 patch release. If you want to use newtmgr on Windows, please use Apache Mynewt 1.1.0 release.  This guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).  It assumes that you have already installed the  newt tool on Windows  and have the Windows development environment set up.    This guide shows you how to perform the following:   Install latest release of newtmgr from binary.  Install latest release of newtmgr from source.   See  Installing Previous Releases of Newtmgr  to install an earlier version of newtgmr.  Note:  If you would like to contribute to the newtmgr tool, see  Setting Up Go Environment to Contribute to Newt and Newtmgr Tools .", 
+            "text": "This guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).  It assumes that you have already installed the  newt tool on Windows  and have the Windows development environment set up.    This guide shows you how to perform the following:   Install latest release of newtmgr from binary.  Install latest release of newtmgr from source.   See  Installing Previous Releases of Newtmgr  to install an earlier version of newtgmr.  Note:  If you would like to contribute to the newtmgr tool, see  Setting Up Go Environment to Contribute to Newt and Newtmgr Tools .", 
             "title": "Installing Newtmgr on Windows"
         }, 
         {
             "location": "/newtmgr/install_windows/#installing-the-latest-release-of-newtmgr-tool-from-binary", 
-            "text": "You can install the latest release of newtmgr from binary. It has been tested on Windows 10 64 bit platform.  \n1. Start a MinGW terminal.    \n2. Download the newtmgr binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1_2_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newtmgr. See  Checking the Installed Version .", 
+            "text": "You can install the latest release of newtmgr from binary. It has been tested on Windows 10 64 bit platform.  \n1. Start a MinGW terminal.    \n2. Download the newtmgr binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1_3_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newtmgr. See  Checking the Installed Version .", 
             "title": "Installing the Latest Release of Newtmgr Tool from Binary"
         }, 
         {
             "location": "/newtmgr/install_windows/#installing-the-latest-release-of-newtmgr-from-source", 
-            "text": "If you have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal.   \n3. Create a Go workspace in the /tmp directory:  $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n4. 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  Note  If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step:   # github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice  \n5. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout m
 ynewt_1_2_0_tag\nNote: checking out  mynewt_1_2_0_tag .  \n6. Build newtmgr from the latest release version:  $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe  \n7. 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 have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal.   \n3. Create a Go workspace in the /tmp directory:  $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n4. 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  Note  If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step:   # github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice  \n5. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout m
 ynewt_1_3_0_tag\nNote: checking out  mynewt_1_3_0_tag .  \n6. Build newtmgr from the latest release version:  $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe  \n7. 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 of Newtmgr from Source"
         }, 
         {
diff --git a/latest/newt/install/newt_windows/index.html b/latest/newt/install/newt_windows/index.html
index f5cc1a2f5..d6a7365f8 100644
--- a/latest/newt/install/newt_windows/index.html
+++ b/latest/newt/install/newt_windows/index.html
@@ -488,7 +488,7 @@ <h3 id="installing-the-latest-release-of-the-newt-tool-from-binary">Installing t
 1. Start a MinGW terminal.</p>
 <p><br>
 2. Download the newt binary tar file:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1_2_0_windows_amd64.tar.gz
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1_3_0_windows_amd64.tar.gz
 </pre></div>
 
 
@@ -497,14 +497,14 @@ <h3 id="installing-the-latest-release-of-the-newt-tool-from-binary">Installing t
 <ul>
 <li>
 <p>If you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin
 </pre></div>
 
 
 </li>
 <li>
 <p>If you are installing newt for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C /usr/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C /usr/bin
 </pre></div>
 
 
@@ -521,16 +521,16 @@ <h3 id="installing-the-latest-release-of-newt-from-source">Installing the Latest
 2. Start a MinGw terminal.</p>
 <p><br>
 3. 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
+<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>
 4. 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>
 
 
@@ -557,7 +557,7 @@ <h3 id="checking-the-installed-version"><a name="check_newt"></a>Checking the In
 <p><br>
 1. Check the version of newt:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ newt version
-Apache Newt version: 1.2.0
+Apache Newt version: 1.3.0
 </pre></div>
 
 
diff --git a/latest/newtmgr/install_windows/index.html b/latest/newtmgr/install_windows/index.html
index 1169c26f9..879fcd656 100644
--- a/latest/newtmgr/install_windows/index.html
+++ b/latest/newtmgr/install_windows/index.html
@@ -407,7 +407,6 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                         
                         
                             <h2 id="installing-newtmgr-on-windows">Installing Newtmgr on Windows</h2>
-<p><strong>Note</strong>: Newtmgr 1.2 on Windows will be released in 1.2.1 patch release. If you want to use newtmgr on Windows, please use Apache Mynewt 1.1.0 release.</p>
 <p>This guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).</p>
 <p>It assumes that you have already installed the <a href="../../newt/install/newt_windows/">newt tool on Windows</a> and have the Windows development environment set up.  </p>
 <p>This guide shows you how to perform the following:</p>
@@ -423,7 +422,7 @@ <h3 id="installing-the-latest-release-of-newtmgr-tool-from-binary">Installing th
 1. Start a MinGW terminal.  </p>
 <p><br>
 2. Download the newtmgr binary tar file:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1_2_0_windows_amd64.tar.gz
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1_3_0_windows_amd64.tar.gz
 </pre></div>
 
 
@@ -432,14 +431,14 @@ <h3 id="installing-the-latest-release-of-newtmgr-tool-from-binary">Installing th
 <ul>
 <li>
 <p>If you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin
 </pre></div>
 
 
 </li>
 <li>
 <p>If you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C /usr/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C /usr/bin
 </pre></div>
 
 
@@ -479,8 +478,8 @@ <h3 id="installing-the-latest-release-of-newtmgr-from-source">Installing the Lat
 <p><br>
 5. 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>
 
 
diff --git a/mkdocs/search_index.json b/mkdocs/search_index.json
index 7ad75092b..66631a75a 100644
--- a/mkdocs/search_index.json
+++ b/mkdocs/search_index.json
@@ -242,7 +242,7 @@
         }, 
         {
             "location": "/newt/install/newt_windows/", 
-            "text": "Installing Newt on Windows\n\n\nYou can develop and build Mynewt OS applications for your target boards on the Windows platform.  This guide shows you how to install the latest release version of newt from binary or from source.  The tool is written in Go (golang).\n\n\nIn Windows, we use MinGW as the development environment to build and run Mynewt OS applications for target boards. MinGW runs the bash shell and provides a Unix-like environment. This provides a uniform way to build Mynewt OS applications. The Mynewt documentation and tutorials use Unix commands and you can use the same Unix commands on MinGW to follow the tutorials. The documentation will note any commands or behaviors that are specific to Windows.\n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall MSYS2/MinGW. \n\n\nInstall Git.\n\n\nInstall latest release (1.2.0) of newt from binary.\n\n\nInstall latest release of newt from source.\n\n\n\n\nSee \nInstalling Previous Relea
 ses of Newt\n to install an earlier version of newt. You still need to set up your MinGW development environment.\n\n\nNote:\n If you would like to contribute to the newt tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\n\n\nInstalling MSYS2/MinGW\n\n\nMSYS2/MinGW provides a bash shell and tools to build applications that run on Windows. It includes three subsystems:\n\n\n\n\nMSYS2 toolchain to build POSIX applications that run on Windows. \n\n\nMinGW32 toolchains to build 32 bit native Windows applications.  \n\n\nMinGW64 toolchains to build 64 bit native Windows applications.  \n\n\n\n\nThe subsystems run the bash shell and provide a Unix-like environment. You can also run Windows applications from the shell. We will use the MinGW subsystem.\n\n\nNote:\n You can skip this installation step if you already have MinGW installed (from an earlier MSYS2/MinGW or Git Bash installation), but you must list the \nbin\n path for your installation in your W
 indows Path. For example: if you installed MSYS2/MinGW in the \n C:\\msys64 \n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. If you are using Windows 10 WSL, ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\nTo install and setup MSYS2 and MinGW:\n\n\n\n\nDownload and run the \nMSYS2 installer\n.  Select the 64 bit version if you are running on a 64 bit platform. Follow the prompts and check the \nRun MSYS2 now\n checkbox on the \nInstallation Complete\n dialog. \n\n\n\n\nIn the MSYS2 terminal, run the \npacman -Syuu\n command. If you get a message to run the update again, close the terminal and run the \npacman -Syuu\n command in a new terminal. \n\n\nTo start a new MSYS2 terminal, select the \"MSYS2 MSYS\" application from the Windows start menu.\n\n\n\n\n\n\nAdd a new user variable named \nMSYS2_PATH_TYPE\n and set the value to \ninherit\n in your Windows environment. This enables the MSYS2 and MinGW bash to inherit y
 our Windows user \nPath\n values. \n\n\nTo add the variable,  select properties for your computer \n Advanced system settings \n Environment Variables \n New\n\n\n\n\n\n\nAdd the MinGW \nbin\n path to your Windows Path. For example: if you install MSYS2/MinGW in the \nC:\\msys64\n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. \n\n\nNote:\n If you are using Windows 10 WSL,  ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\n\n\n\n\nRun the \npacman -Su vim\n command to install the vim editor. \n\n\nNote:\nYou can also use a Windows editor. You can access your files from the \nC:\\\nmsys-install-folder\n\\home\\\nusername\n folder, where \nmsys-install-folder\n is the folder you installed MSYS2 in. For example, if you installed MSYS2 in the \nmsys64\n folder, your files are stored in \nC:\\msys64\\home\\\nusername\n\n\n\n\n\n\nRun the  \npacman -Su tar\n command to install the tar tool. \n\n\n\n\n\n\nYou will need to start
  a MinGW terminal to run the commands specified in the Mynewt documentation and  tutorials.  To start a MinGW terminal, select the \"MSYS2 Mingw\" application from the start Menu (you can use either MinGW32 or MinGW64). \nIn Windows, we use the MinGW subsystem to build  Mynewt tools and applications.  \n\n\nInstalling Git for Windows\n\n\nDownload and install \nGit for Windows\n if it is not already installed.\n\n\nInstalling the Latest Release of the Newt Tool from Binary\n\n\nYou can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform. \n\n\n\n1. Start a MinGW terminal.\n\n\n\n2. Download the newt binary tar file:\n\n\n$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1_2_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the c
 urrent newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C $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 setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newt. See \nChecking the Installed Version\n.\n\n\n\n\nInstalling the Latest Release of Newt From Source\n\n\nIf you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.\n\n\n\n1.  If you do not have Go installed, download and install the latest version of \nGo\n. Newt requires Go version 1.7.6 or higher.\n\n\n\n2. Start a MinGw terminal.\n\n\n\n3. 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 -xz
 f /tmp/mynewt_1_2_0_tag.tar.gz\n\n\n\n\n\n\n4. 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\n5. You should see the \nnewt/newt.exe\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 executable to the $GOPATH/bin directory.\n\n\n$ mv newt/newt.exe $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 executable to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt.exe /usr/bin\n\n\n\n\n\n\n\n\n\n\n\nChecking the Installed Version\n\n\n\n1. Check the version of newt:\n\n\n$ newt version\nApache Newt version: 1.2.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\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 \n
 newt [command] --help\n for more information about a command.", 
+            "text": "Installing Newt on Windows\n\n\nYou can develop and build Mynewt OS applications for your target boards on the Windows platform.  This guide shows you how to install the latest release version of newt from binary or from source.  The tool is written in Go (golang).\n\n\nIn Windows, we use MinGW as the development environment to build and run Mynewt OS applications for target boards. MinGW runs the bash shell and provides a Unix-like environment. This provides a uniform way to build Mynewt OS applications. The Mynewt documentation and tutorials use Unix commands and you can use the same Unix commands on MinGW to follow the tutorials. The documentation will note any commands or behaviors that are specific to Windows.\n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall MSYS2/MinGW. \n\n\nInstall Git.\n\n\nInstall latest release (1.2.0) of newt from binary.\n\n\nInstall latest release of newt from source.\n\n\n\n\nSee \nInstalling Previous Relea
 ses of Newt\n to install an earlier version of newt. You still need to set up your MinGW development environment.\n\n\nNote:\n If you would like to contribute to the newt tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\n\n\nInstalling MSYS2/MinGW\n\n\nMSYS2/MinGW provides a bash shell and tools to build applications that run on Windows. It includes three subsystems:\n\n\n\n\nMSYS2 toolchain to build POSIX applications that run on Windows. \n\n\nMinGW32 toolchains to build 32 bit native Windows applications.  \n\n\nMinGW64 toolchains to build 64 bit native Windows applications.  \n\n\n\n\nThe subsystems run the bash shell and provide a Unix-like environment. You can also run Windows applications from the shell. We will use the MinGW subsystem.\n\n\nNote:\n You can skip this installation step if you already have MinGW installed (from an earlier MSYS2/MinGW or Git Bash installation), but you must list the \nbin\n path for your installation in your W
 indows Path. For example: if you installed MSYS2/MinGW in the \n C:\\msys64 \n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. If you are using Windows 10 WSL, ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\nTo install and setup MSYS2 and MinGW:\n\n\n\n\nDownload and run the \nMSYS2 installer\n.  Select the 64 bit version if you are running on a 64 bit platform. Follow the prompts and check the \nRun MSYS2 now\n checkbox on the \nInstallation Complete\n dialog. \n\n\n\n\nIn the MSYS2 terminal, run the \npacman -Syuu\n command. If you get a message to run the update again, close the terminal and run the \npacman -Syuu\n command in a new terminal. \n\n\nTo start a new MSYS2 terminal, select the \"MSYS2 MSYS\" application from the Windows start menu.\n\n\n\n\n\n\nAdd a new user variable named \nMSYS2_PATH_TYPE\n and set the value to \ninherit\n in your Windows environment. This enables the MSYS2 and MinGW bash to inherit y
 our Windows user \nPath\n values. \n\n\nTo add the variable,  select properties for your computer \n Advanced system settings \n Environment Variables \n New\n\n\n\n\n\n\nAdd the MinGW \nbin\n path to your Windows Path. For example: if you install MSYS2/MinGW in the \nC:\\msys64\n directory,  add \nC:\\msys64\\usr\\bin\n to your Windows Path. \n\n\nNote:\n If you are using Windows 10 WSL,  ensure that you use the \nC:\\msys64\\usr\\bin\\bash.exe\n and not the Windows 10 WSL bash.\n\n\n\n\n\n\nRun the \npacman -Su vim\n command to install the vim editor. \n\n\nNote:\nYou can also use a Windows editor. You can access your files from the \nC:\\\nmsys-install-folder\n\\home\\\nusername\n folder, where \nmsys-install-folder\n is the folder you installed MSYS2 in. For example, if you installed MSYS2 in the \nmsys64\n folder, your files are stored in \nC:\\msys64\\home\\\nusername\n\n\n\n\n\n\nRun the  \npacman -Su tar\n command to install the tar tool. \n\n\n\n\n\n\nYou will need to start
  a MinGW terminal to run the commands specified in the Mynewt documentation and  tutorials.  To start a MinGW terminal, select the \"MSYS2 Mingw\" application from the start Menu (you can use either MinGW32 or MinGW64). \nIn Windows, we use the MinGW subsystem to build  Mynewt tools and applications.  \n\n\nInstalling Git for Windows\n\n\nDownload and install \nGit for Windows\n if it is not already installed.\n\n\nInstalling the Latest Release of the Newt Tool from Binary\n\n\nYou can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform. \n\n\n\n1. Start a MinGW terminal.\n\n\n\n2. Download the newt binary tar file:\n\n\n$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1_3_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the c
 urrent newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C $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 setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newt. See \nChecking the Installed Version\n.\n\n\n\n\nInstalling the Latest Release of Newt From Source\n\n\nIf you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.\n\n\n\n1.  If you do not have Go installed, download and install the latest version of \nGo\n. Newt requires Go version 1.7.6 or higher.\n\n\n\n2. Start a MinGw terminal.\n\n\n\n3. Download and unpack the newt source:\n\n\n$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_3_0_tag.tar.gz\n$ tar -xz
 f /tmp/mynewt_1_3_0_tag.tar.gz\n\n\n\n\n\n\n4. 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\n5. You should see the \nnewt/newt.exe\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 executable to the $GOPATH/bin directory.\n\n\n$ mv newt/newt.exe $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 executable to /usr/bin or a directory in your PATH:\n\n\n$ mv newt/newt.exe /usr/bin\n\n\n\n\n\n\n\n\n\n\n\nChecking the Installed Version\n\n\n\n1. Check the version of newt:\n\n\n$ newt version\nApache Newt version: 1.3.0\n\n\n\n\n\n\n2. Get information about newt:\n\n\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 \n
 newt [command] --help\n for more information about a command.", 
             "title": "Install Newt on Windows"
         }, 
         {
@@ -262,12 +262,12 @@
         }, 
         {
             "location": "/newt/install/newt_windows/#installing-the-latest-release-of-the-newt-tool-from-binary", 
-            "text": "You can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform.   \n1. Start a MinGW terminal.  \n2. Download the newt binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1_2_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newt. See  Checking the Installed Version .", 
+            "text": "You can install the latest release of newt from binary. It has been tested on Windows 10 64 bit platform.   \n1. Start a MinGW terminal.  \n2. Download the newt binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1_3_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newt. See  Checking the Installed Version .", 
             "title": "Installing the Latest Release of the Newt Tool from Binary"
         }, 
         {
             "location": "/newt/install/newt_windows/#installing-the-latest-release-of-newt-from-source", 
-            "text": "If you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.  \n1.  If you do not have Go installed, download and install the latest version of  Go . Newt requires Go version 1.7.6 or higher.  \n2. Start a MinGw terminal.  \n3. 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  \n4. 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  \n5. You should see the  newt/newt.exe  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the executable to the $GOPATH/bin directory.  $ mv newt/newt.exe $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the executable to /usr
 /bin or a directory in your PATH:  $ mv newt/newt.exe /usr/bin", 
+            "text": "If you have an older version of Windows or a 32 bit platform, you can build and install the latest release version of newt from source.  \n1.  If you do not have Go installed, download and install the latest version of  Go . Newt requires Go version 1.7.6 or higher.  \n2. Start a MinGw terminal.  \n3. 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  \n4. 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  \n5. You should see the  newt/newt.exe  executable. Move the executable to a bin directory in your PATH:    If you previously built newt from the master branch, you can move the executable to the $GOPATH/bin directory.  $ mv newt/newt.exe $GOPATH/bin    If you are installing newt for the first time and do not have a Go workspace set up, you can move the executable to /usr
 /bin or a directory in your PATH:  $ mv newt/newt.exe /usr/bin", 
             "title": "Installing the Latest Release of Newt From Source"
         }, 
         {
@@ -13367,22 +13367,22 @@
         }, 
         {
             "location": "/newtmgr/install_windows/", 
-            "text": "Installing Newtmgr on Windows\n\n\nNote\n: Newtmgr 1.2 on Windows will be released in 1.2.1 patch release. If you want to use newtmgr on Windows, please use Apache Mynewt 1.1.0 release.\n\n\nThis guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).\n\n\nIt assumes that you have already installed the \nnewt tool on Windows\n and have the Windows development environment set up.  \n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall latest release of newtmgr from binary.\n\n\nInstall latest release of newtmgr from source.\n\n\n\n\nSee \nInstalling Previous Releases of Newtmgr\n to install an earlier version of newtgmr.\n\n\nNote:\n If you would like to contribute to the newtmgr tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\nInstalling the Latest Release of Newtmgr Tool from Binary\n\n\nYou can install the latest release of newtmgr from 
 binary. It has been tested on Windows 10 64 bit platform.\n\n\n\n1. Start a MinGW terminal.  \n\n\n\n2. Download the newtmgr binary tar file:\n\n\n$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1_2_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newtmgr. See \nChecking the Installed Version\n.\n\n\n\n\n\nInstalling the Latest Releas
 e of Newtmgr from Source\n\n\nIf you have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal. \n\n\n\n3. 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\n4. 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\n\n\n\n\nNote\n If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step: \n\n\n# github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice\n\n\n\n\n\n\n5. 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\n6. Build newtmgr from the latest release version:\n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe\n\n\n\n\n\n\n7. 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\nChecking the Installed Version\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 [com
 mand] --help\n for more information about a command.", 
+            "text": "Installing Newtmgr on Windows\n\n\nThis guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).\n\n\nIt assumes that you have already installed the \nnewt tool on Windows\n and have the Windows development environment set up.  \n\n\nThis guide shows you how to perform the following:\n\n\n\n\nInstall latest release of newtmgr from binary.\n\n\nInstall latest release of newtmgr from source.\n\n\n\n\nSee \nInstalling Previous Releases of Newtmgr\n to install an earlier version of newtgmr.\n\n\nNote:\n If you would like to contribute to the newtmgr tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\nInstalling the Latest Release of Newtmgr Tool from Binary\n\n\nYou can install the latest release of newtmgr from binary. It has been tested on Windows 10 64 bit platform.\n\n\n\n1. Start a MinGW terminal.  \n\n\n\n2. Download the newtmgr binary tar file:\n\n\n$ wget -P
  /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1_3_0_windows_amd64.tar.gz\n\n\n\n\n\n\n3. Extract the file:\n\n\n\n\n\n\nIf you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.\n\n\n tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin\n\n\n\n\n\n\n\n\n\nIf you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:\n\n\n tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C /usr/bin\n\n\n\n\n\n\n\n\n\n\n4. Verify the installed version of newtmgr. See \nChecking the Installed Version\n.\n\n\n\n\n\nInstalling the Latest Release of Newtmgr from Source\n\n\nIf you have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal. \n\n\n\n3. 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\n4. 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\n\n\n\n\nNote\n If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step: \n\n\n# github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice\n\n\n\n\n\n\n5. 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\n6. Build ne
 wtmgr from the latest release version:\n\n\n$ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe\n\n\n\n\n\n\n7. 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\nChecking the Installed Version\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 d
 ata\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 Windows"
         }, 
         {
             "location": "/newtmgr/install_windows/#installing-newtmgr-on-windows", 
-            "text": "Note : Newtmgr 1.2 on Windows will be released in 1.2.1 patch release. If you want to use newtmgr on Windows, please use Apache Mynewt 1.1.0 release.  This guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).  It assumes that you have already installed the  newt tool on Windows  and have the Windows development environment set up.    This guide shows you how to perform the following:   Install latest release of newtmgr from binary.  Install latest release of newtmgr from source.   See  Installing Previous Releases of Newtmgr  to install an earlier version of newtgmr.  Note:  If you would like to contribute to the newtmgr tool, see  Setting Up Go Environment to Contribute to Newt and Newtmgr Tools .", 
+            "text": "This guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).  It assumes that you have already installed the  newt tool on Windows  and have the Windows development environment set up.    This guide shows you how to perform the following:   Install latest release of newtmgr from binary.  Install latest release of newtmgr from source.   See  Installing Previous Releases of Newtmgr  to install an earlier version of newtgmr.  Note:  If you would like to contribute to the newtmgr tool, see  Setting Up Go Environment to Contribute to Newt and Newtmgr Tools .", 
             "title": "Installing Newtmgr on Windows"
         }, 
         {
             "location": "/newtmgr/install_windows/#installing-the-latest-release-of-newtmgr-tool-from-binary", 
-            "text": "You can install the latest release of newtmgr from binary. It has been tested on Windows 10 64 bit platform.  \n1. Start a MinGW terminal.    \n2. Download the newtmgr binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1_2_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newtmgr. See  Checking the Installed Version .", 
+            "text": "You can install the latest release of newtmgr from binary. It has been tested on Windows 10 64 bit platform.  \n1. Start a MinGW terminal.    \n2. Download the newtmgr binary tar file:  $ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1_3_0_windows_amd64.tar.gz  \n3. Extract the file:    If you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.   tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin    If you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:   tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C /usr/bin    \n4. Verify the installed version of newtmgr. See  Checking the Installed Version .", 
             "title": "Installing the Latest Release of Newtmgr Tool from Binary"
         }, 
         {
             "location": "/newtmgr/install_windows/#installing-the-latest-release-of-newtmgr-from-source", 
-            "text": "If you have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal.   \n3. Create a Go workspace in the /tmp directory:  $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n4. 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  Note  If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step:   # github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice  \n5. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout m
 ynewt_1_2_0_tag\nNote: checking out  mynewt_1_2_0_tag .  \n6. Build newtmgr from the latest release version:  $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe  \n7. 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 have an older version of Windows or a 32 bit platform, 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. Start MinGW terminal.   \n3. Create a Go workspace in the /tmp directory:  $ cd /tmp\n$ mkdir go\n$ cd go\n$ export GOPATH=/tmp/go  \n4. 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  Note  If you get the following error, you may ignore it as we will rebuild newtmgr from the latest release version of newtmgr in the next step:   # github.com/currantlabs/ble/examples/lib/dev\n..\\..\\..\\github.com\\currantlabs\\ble\\examples\\lib\\dev\\dev.go:7: undefined: DefaultDevice  \n5. Check out the source from the latest release version:  $ cd src/mynewt.apache.org/newtmgr\n$ git checkout m
 ynewt_1_3_0_tag\nNote: checking out  mynewt_1_3_0_tag .  \n6. Build newtmgr from the latest release version:  $ cd newtmgr\n$ go install\n$ ls /tmp/go/bin/newtmgr.exe\n-rwxr-xr-x 1 user None 15457280 Sep 12 00:30 /tmp/go/bin/newtmgr.exe  \n7. 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 of Newtmgr from Source"
         }, 
         {
diff --git a/newt/install/newt_windows/index.html b/newt/install/newt_windows/index.html
index f5cc1a2f5..d6a7365f8 100644
--- a/newt/install/newt_windows/index.html
+++ b/newt/install/newt_windows/index.html
@@ -488,7 +488,7 @@ <h3 id="installing-the-latest-release-of-the-newt-tool-from-binary">Installing t
 1. Start a MinGW terminal.</p>
 <p><br>
 2. Download the newt binary tar file:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newt_1_2_0_windows_amd64.tar.gz
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newt_1_3_0_windows_amd64.tar.gz
 </pre></div>
 
 
@@ -497,14 +497,14 @@ <h3 id="installing-the-latest-release-of-the-newt-tool-from-binary">Installing t
 <ul>
 <li>
 <p>If you previously built newt from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newt.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin
 </pre></div>
 
 
 </li>
 <li>
 <p>If you are installing newt for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_2_0_windows_amd64.tar.gz -C /usr/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newt_1_3_0_windows_amd64.tar.gz -C /usr/bin
 </pre></div>
 
 
@@ -521,16 +521,16 @@ <h3 id="installing-the-latest-release-of-newt-from-source">Installing the Latest
 2. Start a MinGw terminal.</p>
 <p><br>
 3. 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
+<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>
 4. 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>
 
 
@@ -557,7 +557,7 @@ <h3 id="checking-the-installed-version"><a name="check_newt"></a>Checking the In
 <p><br>
 1. Check the version of newt:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ newt version
-Apache Newt version: 1.2.0
+Apache Newt version: 1.3.0
 </pre></div>
 
 
diff --git a/newtmgr/install_windows/index.html b/newtmgr/install_windows/index.html
index 1169c26f9..879fcd656 100644
--- a/newtmgr/install_windows/index.html
+++ b/newtmgr/install_windows/index.html
@@ -407,7 +407,6 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                         
                         
                             <h2 id="installing-newtmgr-on-windows">Installing Newtmgr on Windows</h2>
-<p><strong>Note</strong>: Newtmgr 1.2 on Windows will be released in 1.2.1 patch release. If you want to use newtmgr on Windows, please use Apache Mynewt 1.1.0 release.</p>
 <p>This guide shows you how to install the latest release of newtmgr from binary or from source. The tool is written in Go (golang).</p>
 <p>It assumes that you have already installed the <a href="../../newt/install/newt_windows/">newt tool on Windows</a> and have the Windows development environment set up.  </p>
 <p>This guide shows you how to perform the following:</p>
@@ -423,7 +422,7 @@ <h3 id="installing-the-latest-release-of-newtmgr-tool-from-binary">Installing th
 1. Start a MinGW terminal.  </p>
 <p><br>
 2. Download the newtmgr binary tar file:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.2.0/newtmgr_1_2_0_windows_amd64.tar.gz
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span>$ wget -P /tmp https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.3.0/newtmgr_1_3_0_windows_amd64.tar.gz
 </pre></div>
 
 
@@ -432,14 +431,14 @@ <h3 id="installing-the-latest-release-of-newtmgr-tool-from-binary">Installing th
 <ul>
 <li>
 <p>If you previously built newtmgr from the master branch, you can extract the file into your $GOPATH/bin directory. Note: This overwrites the current newtmgr.exe in the directory and assumes that you are using $GOPATH/bin for your Go applications.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C $GOPATH/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C $GOPATH/bin
 </pre></div>
 
 
 </li>
 <li>
 <p>If you are installing newtmgr for the first time and do not have Go setup, you can extract into /usr/bin directory:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_2_0_windows_amd64.tar.gz -C /usr/bin
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span></span> tar -xzf /tmp/newtmgr_1_3_0_windows_amd64.tar.gz -C /usr/bin
 </pre></div>
 
 
@@ -479,8 +478,8 @@ <h3 id="installing-the-latest-release-of-newtmgr-from-source">Installing the Lat
 <p><br>
 5. 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>
 
 


 

----------------------------------------------------------------
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