Installing Previous Releases of Newtmgr

This page shows you how to install previous releases of newtmgr for Mac OS, Linux, and Windows.

Mac OS

You can install previous releases of newtmgr using mynewt-newtmgr@X.Y Homebrew formulas, where X.Y is a version number.

For example, if you want to install newtmgr 1.0, run the following commands:


$ brew update $ brew install mynewt-newtmgr@1.0

Note: This is a keg-only installation. newtgmr 1.0 is installed in /usr/local/Cellar/mynewt-newtmgr@1.0/1.0.0/bin but not symlinked into /usr/local/bin.

If you need this version of newtmgr first in your PATH, run the following commands:


$ echo 'export PATH=/usr/local/Cellar/mynewt-newtmgr@1.0/1.0.0/bin:$PATH' >> ~/.bash_profile $ source ~/.bash_profile
$ brew unlink mynewt-newtmgr
$ brew link -f mynewt-newtmgr@1.0
VersionDownload
1.0.0newtmgr_1.0.0-1_amd64.deb
1.1.0newtmgr_1.1.0-1_amd64.deb
1.2.0newtmgr_1.2.0-1_amd64.deb
1.3.0newtmgr_1.3.0-1_amd64.deb
VersionDownload
1.1.0newtmgr_1_1_0_windows_amd64.tar.gz
  • 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 newtmgr_1_1_0_windows_amd64.tar.gz -C $GOPATH/bin
    
  • If you are installing newtmgr for the first time and do not have a Go workspace setup, you can extract into /usr/bin directory:

      tar -xzf newtmgr_1_1_0_windows_amd64.tar.gz -C /usr/bin