Merge pull request #88 from sjanc/141

141
diff --git a/README.md b/README.md
index 85b85c6..0fc1df7 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,6 @@
 Build the newtmgr tool as follows:
 
 1. Unpack newtmgr source.
-2. Rename resulting `apache-mynewt-newtmgr-1.3.0` directory to `$GOPATH/src/mynewt.apache.org/newtmgr`
+2. Rename resulting `apache-mynewt-newtmgr-1.4.1` directory to `$GOPATH/src/mynewt.apache.org/newtmgr`
 3. `cd $GOPATH/src/mynewt.apache.org/newtmgr/newtmgr`
 4. `go build`
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 257b059..d3ae2d7 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,6 +1,6 @@
 # RELEASE NOTES
 
-04 June 2018 - Apache Newtmgr v1.4.0
+21 June 2018 - Apache Newtmgr v1.4.1
 
 For full release notes, please visit the
 [Apache Mynewt Wiki](https://cwiki.apache.org/confluence/display/MYNEWT/Release+Notes).
@@ -10,12 +10,7 @@
 a device and sends command requests to the device.
 Thew newtmgr tool is documented at http://mynewt.apache.org/latest/newtmgr/overview/
 
-New features in this version of newtmgr include:
-
-* interactive shell for COAP operations
-* "version" command
-* moved documentation from apache-core to newtmgr repo
-* various bugfixes
+This release includes fix for building under Windows.
 
 If working on next-generation build and source package management systems
 sounds exciting to you, get in touch, by sending a mail to the Apache Mynewt
diff --git a/newtmgr/bll/bll_xports_windows.go b/newtmgr/bll/bll_xports_windows.go
index d5fb65e..b1266ea 100644
--- a/newtmgr/bll/bll_xports_windows.go
+++ b/newtmgr/bll/bll_xports_windows.go
@@ -25,10 +25,12 @@
 	"fmt"
 
 	"mynewt.apache.org/newtmgr/nmxact/sesn"
+	"mynewt.apache.org/newtmgr/nmxact/bledefs"
 )
 
 type XportCfg struct {
-	CtlrName string
+	CtlrName    string
+	OwnAddrType bledefs.BleAddrType
 }
 
 func NewXportCfg() XportCfg {
diff --git a/newtmgr/config/bll_config_windows.go b/newtmgr/config/bll_config_windows.go
index 7595fdb..97b7479 100644
--- a/newtmgr/config/bll_config_windows.go
+++ b/newtmgr/config/bll_config_windows.go
@@ -26,12 +26,14 @@
 
 	"mynewt.apache.org/newt/util"
 	"mynewt.apache.org/newtmgr/newtmgr/bll"
+	"mynewt.apache.org/newtmgr/nmxact/bledefs"
 )
 
 type BllConfig struct {
-	CtlrName string
-	PeerId   string
-	PeerName string
+	CtlrName    string
+	OwnAddrType bledefs.BleAddrType
+	PeerId      string
+	PeerName    string
 }
 
 func NewBllConfig() *BllConfig {
diff --git a/newtmgr/newtmgr.go b/newtmgr/newtmgr.go
index 6e9fc82..a59602e 100644
--- a/newtmgr/newtmgr.go
+++ b/newtmgr/newtmgr.go
@@ -77,7 +77,7 @@
 		ExeName:       "newtmgr",
 		ShortName:     "Newtmgr",
 		LongName:      "Apache Newtmgr",
-		VersionString: "1.4.0",
+		VersionString: "1.4.1",
 		CfgFilename:   ".newtmgr.cp.json",
 	}