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

ccollins pushed a change to branch go-ble
in repository https://gitbox.apache.org/repos/asf/mynewt-newtmgr.git.


    omit bcda5ca  Replace currantlabs dep with go-ble.
     add 686f532  Update to release 1.3.0 in docs
     add c14a63d  Add license of all bundled packages
     add 827bef2  newtmgr/nmcoap: Fix for writing to non existing channel
     add d5f2837  go-coap: Add API to set Observe option to a message
     add 54c6ac8  newtmgr: This patch adds newtmgr shell for COAP operations
     add 8dd541f  newtmgr: Add observe support for oic_ble conn type
     add 2ed9c2d  Merge pull request #55 from rymanluk/newtmgr_sandbox
     add cdc971c  file upload - Don't pad final request with zeros.
     add 63cbc40  file - Fix comments (replace "image" with "file").
     add e4c84d1  file download - get full file, not just 1st chunk
     add 1299576  Merge pull request #57 from ccollins476ad/file-cmds-fixes
     add 123d2dc  newtmgr: Fix for missing packages
     add 9009c74  Merge pull request #59 from rymanluk/fix_vendor
     add a895655  newtmgr - Allow metadata to be cfged at runtime
     add e74060b  newtmgr - Add "version" command.
     add 6e94195  Merge pull request #58 from ccollins476ad/metadata
     add 5467c1b  docs: move from mynewt-core
     add 00e6960  docs: finish import from mynewt-core/mynewt-site
     add 09194c4  Merge pull request #60 from gj262/newtmgr
     add 50347db  docs: update doc for docs
     add 5f926f3  Merge pull request #61 from gj262/docTheDocs
     add e3935f4  docs: point to correct docs location
     add 0e43ae6  Merge pull request #62 from gj262/patch-1
     new 4d60209  Replace currantlabs dep with go-ble.
     new f7b5981  revendor
     new b88503e  update readme

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bcda5ca)
            \
             N -- N -- N   refs/heads/go-ble (b88503e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Gopkg.lock                                         |  25 +-
 LICENSE                                            | 132 +++-
 README.md                                          |  10 +-
 RELEASE_NOTES.md                                   |   2 +-
 docs/.gitignore                                    |   5 +
 docs/Makefile                                      |  16 +
 docs/README.rst                                    |  29 +
 docs/command_list/index.rst                        |  43 ++
 docs/command_list/newtmgr_config.rst               |  40 ++
 docs/command_list/newtmgr_conn.rst                 | 170 ++++++
 docs/command_list/newtmgr_crash.rst                |  40 ++
 docs/command_list/newtmgr_datetime.rst             |  44 ++
 docs/command_list/newtmgr_echo.rst                 |  38 ++
 docs/command_list/newtmgr_fs.rst                   |  48 ++
 docs/command_list/newtmgr_image.rst                |  93 +++
 docs/command_list/newtmgr_logs.rst                 |  89 +++
 docs/command_list/newtmgr_mpstats.rst              |  67 ++
 docs/command_list/newtmgr_reset.rst                |  37 ++
 docs/command_list/newtmgr_run.rst                  |  50 ++
 docs/command_list/newtmgr_stat.rst                 | 107 ++++
 docs/command_list/newtmgr_taskstats.rst            |  58 ++
 docs/conf.py                                       | 177 ++++++
 docs/index.rst                                     |  14 +
 docs/install/index.rst                             |  10 +
 docs/install/install_linux.rst                     | 241 ++++++++
 docs/install/install_mac.rst                       | 173 ++++++
 docs/install/install_windows.rst                   | 162 +++++
 docs/install/prev_releases.rst                     |  97 +++
 newtmgr/bll/bll_sesn.go                            |  21 +
 newtmgr/cli/commands.go                            |  19 +-
 newtmgr/cli/connprofile.go                         |   9 +-
 newtmgr/cli/crash.go                               |   2 +-
 newtmgr/cli/datetime.go                            |  27 +-
 newtmgr/cli/fs.go                                  |   6 +-
 newtmgr/cli/image.go                               |  18 +-
 newtmgr/cli/interactive.go                         | 517 ++++++++++++++++
 newtmgr/cli/log.go                                 |  10 +-
 newtmgr/cli/res.go                                 |   1 +
 newtmgr/cli/run.go                                 |   3 +-
 newtmgr/config/connprofile.go                      |   3 +-
 newtmgr/newtmgr.go                                 |   9 +
 newtmgr/nmutil/nmutil.go                           |   9 +
 nmxact/mgmt/transceiver.go                         |  74 +++
 nmxact/mtech_lora/mtech_lora_sesn.go               |   5 +
 nmxact/nmble/ble_sesn.go                           |   7 +
 nmxact/nmble/naked_sesn.go                         |  49 ++
 nmxact/nmcoap/dispatch.go                          |   5 +-
 nmxact/nmcoap/nmcoap.go                            |   6 +-
 nmxact/nmserial/serial_sesn.go                     |   5 +
 nmxact/sesn/sesn.go                                |   5 +
 nmxact/sesn/sesn_util.go                           |  50 +-
 nmxact/udp/udp_sesn.go                             |  18 +
 nmxact/xact/fs.go                                  |  23 +-
 nmxact/xact/res.go                                 |  24 +-
 vendor/github.com/chzyer/readline/.gitignore       |   1 +
 vendor/github.com/chzyer/readline/.travis.yml      |   8 +
 vendor/github.com/chzyer/readline/CHANGELOG.md     |  58 ++
 vendor/github.com/chzyer/readline/LICENSE          |  22 +
 vendor/github.com/chzyer/readline/README.md        | 114 ++++
 vendor/github.com/chzyer/readline/ansi_windows.go  | 249 ++++++++
 vendor/github.com/chzyer/readline/complete.go      | 285 +++++++++
 .../github.com/chzyer/readline/complete_helper.go  | 165 +++++
 .../github.com/chzyer/readline/complete_segment.go |  82 +++
 .../chzyer/readline/complete_segment_test.go       | 167 +++++
 vendor/github.com/chzyer/readline/doc/shortcut.md  |  62 ++
 .../example/readline-demo/readline-demo.go         | 167 +++++
 .../chzyer/readline/example/readline-im/README.md  |   3 +
 .../readline/example/readline-im/readline-im.go    |  60 ++
 .../readline-multiline/readline-multiline.go       |  41 ++
 .../readline-pass-strength.go                      | 102 ++++
 .../readline-remote-client/client.go               |   9 +
 .../readline-remote-server/server.go               |  26 +
 vendor/github.com/chzyer/readline/history.go       | 330 ++++++++++
 vendor/github.com/chzyer/readline/operation.go     | 531 ++++++++++++++++
 vendor/github.com/chzyer/readline/password.go      |  33 +
 .../chzyer/readline/rawreader_windows.go           | 125 ++++
 vendor/github.com/chzyer/readline/readline.go      | 326 ++++++++++
 vendor/github.com/chzyer/readline/readline_test.go |  27 +
 vendor/github.com/chzyer/readline/remote.go        | 475 +++++++++++++++
 vendor/github.com/chzyer/readline/runebuf.go       | 629 +++++++++++++++++++
 vendor/github.com/chzyer/readline/runes.go         | 223 +++++++
 vendor/github.com/chzyer/readline/runes/runes.go   | 155 +++++
 .../github.com/chzyer/readline/runes/runes_test.go |  68 +++
 vendor/github.com/chzyer/readline/runes_test.go    |  68 +++
 vendor/github.com/chzyer/readline/search.go        | 164 +++++
 vendor/github.com/chzyer/readline/std.go           | 197 ++++++
 vendor/github.com/chzyer/readline/std_windows.go   |   9 +
 vendor/github.com/chzyer/readline/term.go          | 123 ++++
 vendor/github.com/chzyer/readline/term_bsd.go      |  29 +
 vendor/github.com/chzyer/readline/term_linux.go    |  33 +
 vendor/github.com/chzyer/readline/term_solaris.go  |  32 +
 vendor/github.com/chzyer/readline/term_unix.go     |  24 +
 vendor/github.com/chzyer/readline/term_windows.go  | 171 ++++++
 vendor/github.com/chzyer/readline/terminal.go      | 238 ++++++++
 vendor/github.com/chzyer/readline/utils.go         | 277 +++++++++
 vendor/github.com/chzyer/readline/utils_test.go    |   1 +
 vendor/github.com/chzyer/readline/utils_unix.go    |  83 +++
 vendor/github.com/chzyer/readline/utils_windows.go |  41 ++
 vendor/github.com/chzyer/readline/vim.go           | 176 ++++++
 vendor/github.com/chzyer/readline/windows_api.go   | 152 +++++
 vendor/github.com/fatih/color/.travis.yml          |   5 +
 vendor/github.com/fatih/color/LICENSE.md           |  20 +
 vendor/github.com/fatih/color/README.md            | 177 ++++++
 vendor/github.com/fatih/color/color.go             | 600 ++++++++++++++++++
 vendor/github.com/fatih/color/color_test.go        | 342 +++++++++++
 vendor/github.com/fatih/color/doc.go               | 133 ++++
 .../go-shlex/COPYING}                              |   0
 vendor/github.com/flynn-archive/go-shlex/Makefile  |  21 +
 vendor/github.com/flynn-archive/go-shlex/README.md |   2 +
 vendor/github.com/flynn-archive/go-shlex/shlex.go  | 457 ++++++++++++++
 .../flynn-archive/go-shlex/shlex_test.go           | 162 +++++
 vendor/gopkg.in/abiosoft/ishell.v1/.gitignore      |   5 +
 vendor/gopkg.in/abiosoft/ishell.v1/.travis.yml     |   9 +
 vendor/gopkg.in/abiosoft/ishell.v1/CHANGES.md      |  32 +
 vendor/gopkg.in/abiosoft/ishell.v1/LICENSE         |  21 +
 vendor/gopkg.in/abiosoft/ishell.v1/README.md       | 322 ++++++++++
 vendor/gopkg.in/abiosoft/ishell.v1/actions.go      | 175 ++++++
 vendor/gopkg.in/abiosoft/ishell.v1/command.go      | 134 ++++
 vendor/gopkg.in/abiosoft/ishell.v1/command_test.go |  96 +++
 vendor/gopkg.in/abiosoft/ishell.v1/completer.go    |  59 ++
 vendor/gopkg.in/abiosoft/ishell.v1/context.go      |  58 ++
 vendor/gopkg.in/abiosoft/ishell.v1/example/main.go | 216 +++++++
 vendor/gopkg.in/abiosoft/ishell.v1/functions.go    |  47 ++
 vendor/gopkg.in/abiosoft/ishell.v1/ishell.go       | 675 +++++++++++++++++++++
 vendor/gopkg.in/abiosoft/ishell.v1/progress.go     | 295 +++++++++
 vendor/gopkg.in/abiosoft/ishell.v1/reader.go       |  98 +++
 vendor/gopkg.in/abiosoft/ishell.v1/utils_unix.go   |  12 +
 .../gopkg.in/abiosoft/ishell.v1/utils_windows.go   |  11 +
 128 files changed, 13406 insertions(+), 81 deletions(-)
 create mode 100644 docs/.gitignore
 create mode 100644 docs/Makefile
 create mode 100644 docs/README.rst
 create mode 100644 docs/command_list/index.rst
 create mode 100644 docs/command_list/newtmgr_config.rst
 create mode 100644 docs/command_list/newtmgr_conn.rst
 create mode 100644 docs/command_list/newtmgr_crash.rst
 create mode 100644 docs/command_list/newtmgr_datetime.rst
 create mode 100644 docs/command_list/newtmgr_echo.rst
 create mode 100644 docs/command_list/newtmgr_fs.rst
 create mode 100644 docs/command_list/newtmgr_image.rst
 create mode 100644 docs/command_list/newtmgr_logs.rst
 create mode 100644 docs/command_list/newtmgr_mpstats.rst
 create mode 100644 docs/command_list/newtmgr_reset.rst
 create mode 100644 docs/command_list/newtmgr_run.rst
 create mode 100644 docs/command_list/newtmgr_stat.rst
 create mode 100644 docs/command_list/newtmgr_taskstats.rst
 create mode 100644 docs/conf.py
 create mode 100644 docs/index.rst
 create mode 100644 docs/install/index.rst
 create mode 100644 docs/install/install_linux.rst
 create mode 100644 docs/install/install_mac.rst
 create mode 100644 docs/install/install_windows.rst
 create mode 100644 docs/install/prev_releases.rst
 create mode 100644 newtmgr/cli/interactive.go
 create mode 100644 vendor/github.com/chzyer/readline/.gitignore
 create mode 100644 vendor/github.com/chzyer/readline/.travis.yml
 create mode 100644 vendor/github.com/chzyer/readline/CHANGELOG.md
 create mode 100644 vendor/github.com/chzyer/readline/LICENSE
 create mode 100644 vendor/github.com/chzyer/readline/README.md
 create mode 100644 vendor/github.com/chzyer/readline/ansi_windows.go
 create mode 100644 vendor/github.com/chzyer/readline/complete.go
 create mode 100644 vendor/github.com/chzyer/readline/complete_helper.go
 create mode 100644 vendor/github.com/chzyer/readline/complete_segment.go
 create mode 100644 vendor/github.com/chzyer/readline/complete_segment_test.go
 create mode 100644 vendor/github.com/chzyer/readline/doc/shortcut.md
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-demo/readline-demo.go
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-im/README.md
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-im/readline-im.go
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-multiline/readline-multiline.go
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-pass-strength/readline-pass-strength.go
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-client/client.go
 create mode 100644 
vendor/github.com/chzyer/readline/example/readline-remote/readline-remote-server/server.go
 create mode 100644 vendor/github.com/chzyer/readline/history.go
 create mode 100644 vendor/github.com/chzyer/readline/operation.go
 create mode 100644 vendor/github.com/chzyer/readline/password.go
 create mode 100644 vendor/github.com/chzyer/readline/rawreader_windows.go
 create mode 100644 vendor/github.com/chzyer/readline/readline.go
 create mode 100644 vendor/github.com/chzyer/readline/readline_test.go
 create mode 100644 vendor/github.com/chzyer/readline/remote.go
 create mode 100644 vendor/github.com/chzyer/readline/runebuf.go
 create mode 100644 vendor/github.com/chzyer/readline/runes.go
 create mode 100644 vendor/github.com/chzyer/readline/runes/runes.go
 create mode 100644 vendor/github.com/chzyer/readline/runes/runes_test.go
 create mode 100644 vendor/github.com/chzyer/readline/runes_test.go
 create mode 100644 vendor/github.com/chzyer/readline/search.go
 create mode 100644 vendor/github.com/chzyer/readline/std.go
 create mode 100644 vendor/github.com/chzyer/readline/std_windows.go
 create mode 100644 vendor/github.com/chzyer/readline/term.go
 create mode 100644 vendor/github.com/chzyer/readline/term_bsd.go
 create mode 100644 vendor/github.com/chzyer/readline/term_linux.go
 create mode 100644 vendor/github.com/chzyer/readline/term_solaris.go
 create mode 100644 vendor/github.com/chzyer/readline/term_unix.go
 create mode 100644 vendor/github.com/chzyer/readline/term_windows.go
 create mode 100644 vendor/github.com/chzyer/readline/terminal.go
 create mode 100644 vendor/github.com/chzyer/readline/utils.go
 create mode 100644 vendor/github.com/chzyer/readline/utils_test.go
 create mode 100644 vendor/github.com/chzyer/readline/utils_unix.go
 create mode 100644 vendor/github.com/chzyer/readline/utils_windows.go
 create mode 100644 vendor/github.com/chzyer/readline/vim.go
 create mode 100644 vendor/github.com/chzyer/readline/windows_api.go
 create mode 100644 vendor/github.com/fatih/color/.travis.yml
 create mode 100644 vendor/github.com/fatih/color/LICENSE.md
 create mode 100644 vendor/github.com/fatih/color/README.md
 create mode 100644 vendor/github.com/fatih/color/color.go
 create mode 100644 vendor/github.com/fatih/color/color_test.go
 create mode 100644 vendor/github.com/fatih/color/doc.go
 copy vendor/github.com/{spf13/cobra/cobra/cmd/testdata/LICENSE.golden => 
flynn-archive/go-shlex/COPYING} (100%)
 create mode 100644 vendor/github.com/flynn-archive/go-shlex/Makefile
 create mode 100644 vendor/github.com/flynn-archive/go-shlex/README.md
 create mode 100644 vendor/github.com/flynn-archive/go-shlex/shlex.go
 create mode 100644 vendor/github.com/flynn-archive/go-shlex/shlex_test.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/.gitignore
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/.travis.yml
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/CHANGES.md
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/LICENSE
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/README.md
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/actions.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/command.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/command_test.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/completer.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/context.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/example/main.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/functions.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/ishell.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/progress.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/reader.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/utils_unix.go
 create mode 100644 vendor/gopkg.in/abiosoft/ishell.v1/utils_windows.go

-- 
To stop receiving notification emails like this one, please contact
ccoll...@apache.org.

Reply via email to