You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/06/24 23:58:04 UTC

[1/3] incubator-mynewt-newt git commit: newt - update version number to 0.9.0.

Repository: incubator-mynewt-newt
Updated Branches:
  refs/heads/master 3960627ba -> f0a27b629


newt - update version number to 0.9.0.


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/0afe6554
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/0afe6554
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/0afe6554

Branch: refs/heads/master
Commit: 0afe655414bbefc922d2adfddf238479bedac5c0
Parents: 3960627
Author: Christopher Collins <cc...@apache.org>
Authored: Wed May 18 21:02:10 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Wed May 18 21:02:10 2016 -0700

----------------------------------------------------------------------
 newt/newt.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/0afe6554/newt/newt.go
----------------------------------------------------------------------
diff --git a/newt/newt.go b/newt/newt.go
index 0dfe5ee..a39b80f 100644
--- a/newt/newt.go
+++ b/newt/newt.go
@@ -29,7 +29,7 @@ import (
 	"mynewt.apache.org/newt/util"
 )
 
-var NewtVersionStr string = "Apache Newt (incubating) version: 0.8.0"
+var NewtVersionStr string = "Apache Newt (incubating) version: 0.9.0"
 var NewtLogLevel log.Level
 var newtSilent bool
 var newtQuiet bool


[3/3] incubator-mynewt-newt git commit: newt - Clone current blinky with "newt new".

Posted by cc...@apache.org.
newt - Clone current blinky with "newt new".


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/f0a27b62
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/f0a27b62
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/f0a27b62

Branch: refs/heads/master
Commit: f0a27b6294c25b85c2a7a1e465c5d36ef467054d
Parents: b1ef668
Author: Christopher Collins <cc...@apache.org>
Authored: Mon May 30 10:48:41 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Mon May 30 10:48:41 2016 -0700

----------------------------------------------------------------------
 newt/cli/project_cmds.go  | 3 ++-
 newt/newt.go              | 4 ++--
 newt/newtutil/newtutil.go | 3 +++
 3 files changed, 7 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/f0a27b62/newt/cli/project_cmds.go
----------------------------------------------------------------------
diff --git a/newt/cli/project_cmds.go b/newt/cli/project_cmds.go
index 7bf03b7..abe7e3d 100644
--- a/newt/cli/project_cmds.go
+++ b/newt/cli/project_cmds.go
@@ -27,6 +27,7 @@ import (
 	"github.com/spf13/cobra"
 	"mynewt.apache.org/newt/newt/downloader"
 	"mynewt.apache.org/newt/newt/interfaces"
+	"mynewt.apache.org/newt/newt/newtutil"
 	"mynewt.apache.org/newt/newt/project"
 	"mynewt.apache.org/newt/util"
 )
@@ -52,7 +53,7 @@ func newRunCmd(cmd *cobra.Command, args []string) {
 	dl.User = "apache"
 	dl.Repo = "incubator-mynewt-blinky"
 
-	dir, err := dl.DownloadRepo("mynewt_0_8_0_b2_tag")
+	dir, err := dl.DownloadRepo(newtutil.NewtBlinkyTag)
 	if err != nil {
 		NewtUsage(cmd, err)
 	}

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/f0a27b62/newt/newt.go
----------------------------------------------------------------------
diff --git a/newt/newt.go b/newt/newt.go
index a39b80f..30105fa 100644
--- a/newt/newt.go
+++ b/newt/newt.go
@@ -26,10 +26,10 @@ import (
 	"github.com/spf13/cobra"
 
 	"mynewt.apache.org/newt/newt/cli"
+	"mynewt.apache.org/newt/newt/newtutil"
 	"mynewt.apache.org/newt/util"
 )
 
-var NewtVersionStr string = "Apache Newt (incubating) version: 0.9.0"
 var NewtLogLevel log.Level
 var newtSilent bool
 var newtQuiet bool
@@ -103,7 +103,7 @@ func newtCmd() *cobra.Command {
 		Long:    versHelpText,
 		Example: versHelpEx,
 		Run: func(cmd *cobra.Command, args []string) {
-			fmt.Printf("%s\n", NewtVersionStr)
+			fmt.Printf("%s\n", newtutil.NewtVersionStr)
 		},
 	}
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/f0a27b62/newt/newtutil/newtutil.go
----------------------------------------------------------------------
diff --git a/newt/newtutil/newtutil.go b/newt/newtutil/newtutil.go
index 4fee488..0daa992 100644
--- a/newt/newtutil/newtutil.go
+++ b/newt/newtutil/newtutil.go
@@ -29,6 +29,9 @@ import (
 	"mynewt.apache.org/newt/viper"
 )
 
+var NewtVersionStr string = "Apache Newt (incubating) version: 0.9.0"
+var NewtBlinkyTag string = "mynewt_0_9_0_tag"
+
 func GetStringFeatures(v *viper.Viper, features map[string]bool,
 	key string) string {
 	val := v.GetString(key)


[2/3] incubator-mynewt-newt git commit: Fix outdated RELEASE_NOTES.md.

Posted by cc...@apache.org.
Fix outdated RELEASE_NOTES.md.


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/b1ef668f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/b1ef668f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/b1ef668f

Branch: refs/heads/master
Commit: b1ef668f62df0559a94a12ce2734892e655be260
Parents: 0afe655
Author: Christopher Collins <cc...@apache.org>
Authored: Mon May 30 07:42:18 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Mon May 30 08:09:52 2016 -0700

----------------------------------------------------------------------
 RELEASE_NOTES.md | 36 ++++++++++++++----------------------
 1 file changed, 14 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/b1ef668f/RELEASE_NOTES.md
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index bf1c479..6e0bffb 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,35 +1,27 @@
 # RELEASE NOTES
 
-14 Mar 2016 - Apache Mynewt V0.8 Beta 2 
+30 Apr 2016 - Apache Newt v0.9.0
 
-For full release notes, please visit the 
+For full release notes, please visit the
 [Apache Mynewt Wiki](https://cwiki.apache.org/confluence/display/MYNEWT/Release+Notes).
-For information about bugs fixed in beta 2, please view the 
-[Issue Tracker Summary](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319221&version=12334805)
 
-This is the first source release of the "New" Newt.  More information on the 
-genesis of Newt, and a description can be found 
+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 an early beta release of Newt, all the normal caveats apply:
+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.
 
-  * APIs and commands may change without warning
-
-  * There are definitely bugs hiding around many corners
-
-However, the belief is that this version of Newt represents the going forward 
-architecture of the Newt tool in Apache Mynewt.  So people who are interested 
-in playing around and using Newt, are encouraged to download and begin to 
-evaluate it.
-
-Future versions will add: 
+Future versions will add:
 
   * More robust package management and versioning
 
-  * Plenty of helper commands for seeing what's installed, what's changed, 
+  * Plenty of helper commands for seeing what's installed, what's changed,
     and why things failed.
 
-The next release of the Newt tool is planned for April 22nd, 2016.  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 Developer's list, dev@mynewt.incubator.apache.org.
-
+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
+Developer's list, dev@mynewt.incubator.apache.org.