You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2018/10/18 21:53:09 UTC

[mynewt-newt] 01/01: Mynewt release 1.5.0

This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch 1_5_0_dev
in repository https://gitbox.apache.org/repos/asf/mynewt-newt.git

commit d8b903e11abbfe854e6601de016e755ad307a2b0
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Thu Oct 18 20:21:40 2018 +0200

    Mynewt release 1.5.0
---
 RELEASE_NOTES.md          | 7 ++++++-
 newt/newtutil/newtutil.go | 6 +++---
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index d2b9dcf..024057f 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,6 +1,6 @@
 # RELEASE NOTES
 
-04 June 2018 - Apache Newt v1.4.0
+18 October 2018 - Apache Newt v1.5.0
 
 For full release notes, please visit the
 [Apache Mynewt Wiki](https://cwiki.apache.org/confluence/display/MYNEWT/Release+Notes).
@@ -16,6 +16,11 @@ around, and trying Newt, are encouraged to download and begin evaluating it.
 Future versions will add:
 
   * More robust package management and versioning
+  * Newt package type "transient"
+  * Support for specifying C++ compiler flags
+  * Improvements for info, size, sync and upgrade commands
+  * Support for encrypted images
+  * Support for multiple concurrent debug sessions with two boards
 
 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/newt/newtutil/newtutil.go b/newt/newtutil/newtutil.go
index 5b83bc8..42d7aa6 100644
--- a/newt/newtutil/newtutil.go
+++ b/newt/newtutil/newtutil.go
@@ -31,9 +31,9 @@ import (
 	"mynewt.apache.org/newt/yaml"
 )
 
-var NewtVersion Version = Version{1, 4, 9999}
-var NewtVersionStr string = "Apache Newt version: 1.5.0-dev"
-var NewtBlinkyTag string = "master"
+var NewtVersion Version = Version{1, 5, 0}
+var NewtVersionStr string = "Apache Newt version: 1.5.0"
+var NewtBlinkyTag string = "mynewt_1_5_0_tag"
 var NewtNumJobs int
 var NewtForce bool
 var NewtAsk bool