You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2017/03/09 22:03:00 UTC

[1/2] incubator-mynewt-newt git commit: Update release notes; date and remove comment saying that this is a beta.

Repository: incubator-mynewt-newt
Updated Branches:
  refs/heads/develop 737da68dd -> 23ce34bce


Update release notes; date and remove comment saying that this is
a beta.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/7a6d02d5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/7a6d02d5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/7a6d02d5

Branch: refs/heads/develop
Commit: 7a6d02d57c880c45dede4a4f017ff0ce4324e716
Parents: 737da68
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Mar 7 16:12:08 2017 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Thu Mar 9 14:00:15 2017 -0800

----------------------------------------------------------------------
 RELEASE_NOTES.md | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/7a6d02d5/RELEASE_NOTES.md
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 7137962..e92398b 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,6 +1,6 @@
 # RELEASE NOTES
 
-22 Nov 2016 - Apache Newt v1.0.0-b1
+7 March 2017 - Apache Newt v1.0.0
 
 For full release notes, please visit the
 [Apache Mynewt Wiki](https://cwiki.apache.org/confluence/display/MYNEWT/Release+Notes).
@@ -9,11 +9,9 @@ Apache Newt is the build and package management system for the Apache Mynewt
 project.  More information on Newt can be found
 [here](http://mail-archives.apache.org/mod_mbox/incubator-mynewt-dev/201603.mbox/%3C56E21C13.9050303%40apache.org%3E)
 
-As a beta release of Apache Newt, the normal caveat applies: APIs and commands
-are subject to change.  However, Apache Mynewt continues to stabilize with each
-release, and we believe this release is a further step forward.  People who are
-interested in playing around, and trying Newt, are encouraged to download and
-begin to evaluate it.
+Apache Mynewt continues to stabilize with each release, and we believe this
+release is a further step forward.  People who are interested in playing
+around, and trying Newt, are encouraged to download and begin evaluating it.
 
 Future versions will add:
 


[2/2] incubator-mynewt-newt git commit: newt; go version requirement is now 1.7.

Posted by ma...@apache.org.
newt; go version requirement is now 1.7.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/23ce34bc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/23ce34bc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/23ce34bc

Branch: refs/heads/develop
Commit: 23ce34bce0a18e50f07e795d5983978376548b77
Parents: 7a6d02d
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Wed Mar 8 14:45:39 2017 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Thu Mar 9 14:00:33 2017 -0800

----------------------------------------------------------------------
 INSTALLING.md | 2 +-
 build.sh      | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/23ce34bc/INSTALLING.md
----------------------------------------------------------------------
diff --git a/INSTALLING.md b/INSTALLING.md
index 885f6cf..0718925 100644
--- a/INSTALLING.md
+++ b/INSTALLING.md
@@ -11,7 +11,7 @@ when available.  To find these, please go to https://mynewt.apache.org/.
 # Installing From Source
 
 The newt tool is written in Go (https://golang.org/).  In order to build Apache
-Mynewt, you must have Go 1.5 or later installed on your system.  Please visit
+Mynewt, you must have Go 1.7 or later installed on your system.  Please visit
 the Golang website for more information on installing Go (https://golang.org/).
 
 Once you have Go installed, you can build newt by running the contained

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/23ce34bc/build.sh
----------------------------------------------------------------------
diff --git a/build.sh b/build.sh
index d4f108f..9405e6b 100755
--- a/build.sh
+++ b/build.sh
@@ -26,7 +26,7 @@ expandpath() {
     )
 }
 
-### Ensure >= go1.5 is installed.
+### Ensure >= go1.7 is installed.
 go_ver_str="$(go version | cut -d ' ' -f 3)"
 go_ver="${go_ver_str#go}"
 
@@ -49,9 +49,9 @@ then
     go_min=0
 fi
 
-if [ ! "$go_maj" -gt 1 ] && [ ! "$go_min" -ge 5 ]
+if [ ! "$go_maj" -gt 1 ] && [ ! "$go_min" -ge 7 ]
 then
-    printf "* Error: go 1.5 or later is required (detected version: %s)\n" \
+    printf "* Error: go 1.7 or later is required (detected version: %s)\n" \
         "$go_maj"."$go_min".X
     exit 1
 fi