svn commit: r68313 - in /release/mynewt: apache-mynewt-1.11.0/ apache-nimble-1.6.0/

2024-04-04 Thread janc
Author: janc
Date: Thu Apr  4 14:34:17 2024
New Revision: 68313

Log:
Remove old Apache Mynewt 1.11.0 and Apache NimBLE 1.6.0 release

Removed:
release/mynewt/apache-mynewt-1.11.0/
release/mynewt/apache-nimble-1.6.0/



Re: [PR] Fix NimBLE version in download section [mynewt-site]

2024-04-04 Thread via GitHub


sjanc merged PR #544:
URL: https://github.com/apache/mynewt-site/pull/544


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-site) branch master updated: Fix NimBLE version in download section

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4ad2517373 Fix NimBLE version in download section
4ad2517373 is described below

commit 4ad2517373aea26a05fee7ae0bb03adfb5636be5
Author: Szymon Janc 
AuthorDate: Thu Apr 4 15:22:12 2024 +0200

Fix NimBLE version in download section
---
 docs/download.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/download.md b/docs/download.md
index 743ab23279..4bf4e0ed3b 100644
--- a/docs/download.md
+++ b/docs/download.md
@@ -51,7 +51,7 @@ Mynewt's Bluetooth stack is now a separate release with a 
porting layer that all
 *   Release Date: April 4, 2024
 *   [Release 
Notes](https://cwiki.apache.org/confluence/display/MYNEWT/RN-NimBLE-1.7.0)
 *   Source downloads:
-- 
[apache-mynewt-nimble-1.6.0.tgz](https://www.apache.org/dyn/closer.lua/mynewt/apache-nimble-1.7.0/apache-mynewt-nimble-1.7.0.tgz)
+- 
[apache-mynewt-nimble-1.7.0.tgz](https://www.apache.org/dyn/closer.lua/mynewt/apache-nimble-1.7.0/apache-mynewt-nimble-1.7.0.tgz)
   
[[PGP]](https://www.apache.org/dist/mynewt/apache-nimble-1.7.0/apache-mynewt-nimble-1.7.0.tgz.asc)
   
[[SHA512]](https://www.apache.org/dist/mynewt/apache-nimble-1.7.0/apache-mynewt-nimble-1.7.0.tgz.sha512)
 



[PR] Fix NimBLE version in download section [mynewt-site]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #544:
URL: https://github.com/apache/mynewt-site/pull/544

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-documentation) branch master updated: Rename README.rst to README.md

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ced1bb0  Rename README.rst to README.md
ced1bb0 is described below

commit ced1bb037617ca8302d83210c4a8a05d388c900b
Author: Szymon Janc 
AuthorDate: Thu Apr 4 15:12:59 2024 +0200

Rename README.rst to README.md

github seems to not render README.rst correctly.
---
 README.rst => README.md | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/README.rst b/README.md
similarity index 100%
rename from README.rst
rename to README.md



(mynewt-core) branch master updated: tinyusb/msc_fat_view: Fix build where no coredump flash is present

2024-04-04 Thread jerzy
This is an automated email from the ASF dual-hosted git repository.

jerzy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
 new 32cdd9b72 tinyusb/msc_fat_view: Fix build where no coredump flash is 
present
32cdd9b72 is described below

commit 32cdd9b721a313de00af8b702b46a53059b49aa9
Author: Jerzy Kasenberg 
AuthorDate: Thu Apr 4 11:16:15 2024 +0200

tinyusb/msc_fat_view: Fix build where no coredump flash is present

sys/coredump was unconditionally included even when coredump
functionality was not required.

For boards that don't have flash area for dumps newt would
not build due to restrictions

Signed-off-by: Jerzy Kasenberg 
---
 hw/usb/tinyusb/msc_fat_view/pkg.yml | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/hw/usb/tinyusb/msc_fat_view/pkg.yml 
b/hw/usb/tinyusb/msc_fat_view/pkg.yml
index 16d5a538f..a831a4384 100644
--- a/hw/usb/tinyusb/msc_fat_view/pkg.yml
+++ b/hw/usb/tinyusb/msc_fat_view/pkg.yml
@@ -30,9 +30,17 @@ pkg.deps:
 - "@apache-mynewt-core/kernel/os"
 - "@apache-mynewt-core/hw/usb/tinyusb"
 - "@apache-mynewt-core/mgmt/imgmgr"
-- "@apache-mynewt-core/sys/coredump"
 - "@mcuboot/boot/bootutil"
 
+pkg.deps.MSC_FAT_VIEW_COREDUMP_FILES:
+- "@apache-mynewt-core/sys/coredump"
+
+pkg.source_files:
+- src/msc_fat_view.c
+
+pkg.source_files.MSC_FAT_VIEW_COREDUMP_FILES:
+- src/coredump_files.c
+
 pkg.init.'(!BOOT_LOADER && TINYUSB_AUTO_START!=0)':
 msc_fat_view_pkg_init: $before:tinyusb_start
 



Re: [PR] tinyusb/msc_fat_view: Fix build where no coredump flash is present [mynewt-core]

2024-04-04 Thread via GitHub


kasjer merged PR #3182:
URL: https://github.com/apache/mynewt-core/pull/3182


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-core) branch master updated: tinyusb/msc_fat_view: Make application version optional in readme

2024-04-04 Thread jerzy
This is an automated email from the ASF dual-hosted git repository.

jerzy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
 new 5049cbc81 tinyusb/msc_fat_view: Make application version optional in 
readme
5049cbc81 is described below

commit 5049cbc81da359283c11c1d567f80bbe3d15164b
Author: Jerzy Kasenberg 
AuthorDate: Thu Apr 4 11:00:03 2024 +0200

tinyusb/msc_fat_view: Make application version optional in readme

Generated README.TXT file contains line

App version: 1.2.1.2

This line is generated from image version from SLOT0.
This line uses fprintf and can increase code size if
printf-like functions were not otherwise used.
Now syscfg value MSC_FAT_VIEW_DEFAULT_README_VERSION can
disable line with version possibly reducing code size.

Additionally default application name used in README.TXT
is taken from APP_NAME syscfg value generated by newt tool.

Signed-off-by: Jerzy Kasenberg 
---
 hw/usb/tinyusb/msc_fat_view/src/msc_fat_view.c | 2 +-
 hw/usb/tinyusb/msc_fat_view/syscfg.yml | 6 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/hw/usb/tinyusb/msc_fat_view/src/msc_fat_view.c 
b/hw/usb/tinyusb/msc_fat_view/src/msc_fat_view.c
index 52b095521..708b16ade 100644
--- a/hw/usb/tinyusb/msc_fat_view/src/msc_fat_view.c
+++ b/hw/usb/tinyusb/msc_fat_view/src/msc_fat_view.c
@@ -356,7 +356,7 @@ readme_create_content(struct MemFile *file)
 
 fwrite(readme_text, 1, sizeof(readme_text) - 1, >file);
 
-if (0 == flash_area_open(FLASH_AREA_IMAGE_0, )) {
+if (MYNEWT_VAL(MSC_FAT_VIEW_DEFAULT_README_VERSION) && 0 == 
flash_area_open(FLASH_AREA_IMAGE_0, )) {
 flash_area_read(fa, 0, _header, sizeof(image_header));
 if (image_header.ih_magic == IMAGE_MAGIC) {
 fprintf(>file, "\n\nApp version: %u.%u.%u.%u\n", 
image_header.ih_ver.iv_major,
diff --git a/hw/usb/tinyusb/msc_fat_view/syscfg.yml 
b/hw/usb/tinyusb/msc_fat_view/syscfg.yml
index ceebb95ef..de6d17751 100644
--- a/hw/usb/tinyusb/msc_fat_view/syscfg.yml
+++ b/hw/usb/tinyusb/msc_fat_view/syscfg.yml
@@ -81,10 +81,14 @@ syscfg.defs:
 description: >
 If set to 1, adds default 'README.TXT' file with some basic 
information about firmware.
 value: 1
+MSC_FAT_VIEW_DEFAULT_README_VERSION:
+description: >
+If set to 1, README.TXT will have application version number.
+value: 1
 MSC_FAT_VIEW_DEFAULT_README_APP_NAME:
 description: >
 Application name that will be put in default README.TXT.
-value: '"Mynewt+TinyUSB"'
+value: MYNEWT_VAL(APP_NAME)
 MSC_FAT_VIEW_DEFAULT_README_INCLUDE_HASHES:
 description: >
 Add git hashes into README.TXT.



Re: [PR] tinyusb/msc_fat_view: Make application version optional in readme [mynewt-core]

2024-04-04 Thread via GitHub


kasjer merged PR #3181:
URL: https://github.com/apache/mynewt-core/pull/3181


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] console log pretty [mynewt-core]

2024-04-04 Thread via GitHub


andrzej-kaczmarek commented on PR #3180:
URL: https://github.com/apache/mynewt-core/pull/3180#issuecomment-2037060842

   why not just `LOG_CONSOLE_PRETTY`?
   I'd add an option to skip printing log level and e.g. colorize module name 
instead.
   and perhaps an option to print timestamp as seconds, i.e. simply "0.123456" 
instead of "123456us".


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-blinky) branch master updated: Use master branch for core repository

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 076d1a4  Use master branch for core repository
076d1a4 is described below

commit 076d1a4f5be542267c7c551423a12543d46bc975
Author: Szymon Janc 
AuthorDate: Thu Apr 4 13:51:50 2024 +0200

Use master branch for core repository

This will be changed upon release, but newt from master downloads
blinky master and thus all project should be from master branches
---
 project.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/project.yml b/project.yml
index 9d486f0..2de4bce 100644
--- a/project.yml
+++ b/project.yml
@@ -27,6 +27,6 @@ project.repositories:
 #
 repository.apache-mynewt-core:
 type: github
-vers: 1.12.0
+vers: 0.0.0
 user: apache
 repo: mynewt-core



Re: [PR] Bump version to 1.13.0-dev [mynewt-newt]

2024-04-04 Thread via GitHub


sjanc merged PR #552:
URL: https://github.com/apache/mynewt-newt/pull/552


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-core) branch master updated: Apache Mynewt 1.12.0 release

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 9b9e9428c Apache Mynewt 1.12.0 release
9b9e9428c is described below

commit 9b9e9428c08dd9aee51e5b97cd7715286f4baaa0
Author: Szymon Janc 
AuthorDate: Thu Apr 4 11:30:05 2024 +0200

Apache Mynewt 1.12.0 release
---
 repository.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/repository.yml b/repository.yml
index f43b924c3..82d06d05c 100644
--- a/repository.yml
+++ b/repository.yml
@@ -42,8 +42,8 @@ repo.versions:
 "1.11.0": "mynewt_1_11_0_tag"
 "1.12.0": "mynewt_1_12_0_tag"
 
-"0-latest": "1.11.0"
-"1-latest": "1.11.0"
+"0-latest": "1.12.0"
+"1-latest": "1.12.0"
 "0-dev": "0.0.0"   # master
 
 "0.8-latest": "0.8.0"



Re: [PR] Apache Mynewt 1.12.0 release [mynewt-core]

2024-04-04 Thread via GitHub


sjanc merged PR #3183:
URL: https://github.com/apache/mynewt-core/pull/3183


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump version to 1.13.0-dev [mynewt-newtmgr]

2024-04-04 Thread via GitHub


sjanc merged PR #207:
URL: https://github.com/apache/mynewt-newtmgr/pull/207


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-newtmgr) branch master updated: Bump version to 1.13.0-dev

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 1a69b80  Bump version to 1.13.0-dev
1a69b80 is described below

commit 1a69b80b08904285d851dfdf02ec871cb895bb2d
Author: Szymon Janc 
AuthorDate: Thu Apr 4 13:48:01 2024 +0200

Bump version to 1.13.0-dev
---
 newtmgr/newtmgr.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/newtmgr/newtmgr.go b/newtmgr/newtmgr.go
index 92c9d22..19a05b4 100644
--- a/newtmgr/newtmgr.go
+++ b/newtmgr/newtmgr.go
@@ -77,7 +77,7 @@ func main() {
ExeName:   "newtmgr",
ShortName: "Newtmgr",
LongName:  "Apache Newtmgr",
-   VersionString: "1.12.0",
+   VersionString: "1.13.0-dev",
CfgFilename:   ".newtmgr.cp.json",
}
 



(mynewt-documentation) branch master updated: Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 5d1d0ca  Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release
5d1d0ca is described below

commit 5d1d0caf5537ac2c9fe654535905184dbff8287f
Author: Szymon Janc 
AuthorDate: Thu Apr 4 13:29:08 2024 +0200

Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release
---
 docs/themes/mynewt/main-banner.html | 2 +-
 docs/themes/mynewt/versions.html| 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/docs/themes/mynewt/main-banner.html 
b/docs/themes/mynewt/main-banner.html
index 165380d..59c1763 100644
--- a/docs/themes/mynewt/main-banner.html
+++ b/docs/themes/mynewt/main-banner.html
@@ -8,7 +8,7 @@
 
 
 
-Latest News: Apache Mynewt 
1.11.0, Apache NimBLE 1.6.0  released September 7, 2023)
+Latest News: Apache Mynewt 
1.12.0, Apache NimBLE 1.7.0  released April 4, 2024)
 
 
 
diff --git a/docs/themes/mynewt/versions.html b/docs/themes/mynewt/versions.html
index 133119c..fcc7eaf 100644
--- a/docs/themes/mynewt/versions.html
+++ b/docs/themes/mynewt/versions.html
@@ -3,6 +3,9 @@
   
 Version: latest
   
+  
+Version: 1.12.0
+  
   
 Version: 1.11.0
   



Re: [PR] Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release [mynewt-site]

2024-04-04 Thread via GitHub


sjanc merged PR #543:
URL: https://github.com/apache/mynewt-site/pull/543


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Use master branch for core repository [mynewt-blinky]

2024-04-04 Thread via GitHub


sjanc merged PR #24:
URL: https://github.com/apache/mynewt-blinky/pull/24


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-newt) branch master updated: Bump version to 1.13.0-dev

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new fca2b91a Bump version to 1.13.0-dev
fca2b91a is described below

commit fca2b91a52489ba5847b27c088507e03ba4cecfc
Author: Szymon Janc 
AuthorDate: Thu Apr 4 13:46:42 2024 +0200

Bump version to 1.13.0-dev
---
 newt/newtutil/newtutil.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/newt/newtutil/newtutil.go b/newt/newtutil/newtutil.go
index 92461cb0..9e129e67 100644
--- a/newt/newtutil/newtutil.go
+++ b/newt/newtutil/newtutil.go
@@ -30,12 +30,12 @@ import (
"mynewt.apache.org/newt/util"
 )
 
-var NewtVersion = Version{1, 12, 0}
-var NewtVersionStr = "1.12.0"
+var NewtVersion = Version{1, 12, 9900}
+var NewtVersionStr = "1.13.0-dev"
 var NewtGitHash = "unknown"
 var NewtDate = "unknown"
 
-var NewtBlinkyTag string = "mynewt_1_12_0_tag"
+var NewtBlinkyTag string = "master"
 var NewtNumJobs int
 var NewtForce bool
 var NewtAsk bool



Re: [PR] Apache NimBLE 1.7.0 release [mynewt-nimble]

2024-04-04 Thread via GitHub


sjanc merged PR #1744:
URL: https://github.com/apache/mynewt-nimble/pull/1744


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-nimble) branch master updated: Apache NimBLE 1.7.0 release

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 1d809b120 Apache NimBLE 1.7.0 release
1d809b120 is described below

commit 1d809b1201c24dc28e86119ea0006fa4946c0b3d
Author: Szymon Janc 
AuthorDate: Thu Apr 4 13:38:16 2024 +0200

Apache NimBLE 1.7.0 release
---
 repository.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/repository.yml b/repository.yml
index b50dc7b9b..809842978 100644
--- a/repository.yml
+++ b/repository.yml
@@ -22,8 +22,8 @@ repo.versions:
 "0.0.0": "master"
 
 "0-dev": "0.0.0"
-"0-latest": "1.6.0"
-"1-latest": "1.6.0"
+"0-latest": "1.7.0"
+"1-latest": "1.7.0"
 
 "1.0.0": "nimble_1_0_0_tag"
 "1.1.0": "nimble_1_1_0_tag"



(mynewt-site) branch master updated: Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 7a3741575f Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release
7a3741575f is described below

commit 7a3741575faa7cd8b574b03bd5b30a797cf09bbc
Author: Szymon Janc 
AuthorDate: Thu Apr 4 13:15:31 2024 +0200

Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release
---
 custom-theme/choose_doc_version.html |  3 ++
 custom-theme/main-banner.html|  2 +-
 docs/documentation.md|  1 +
 docs/download.md | 80 ++--
 mkdocs.yml   |  5 +++
 5 files changed, 51 insertions(+), 40 deletions(-)

diff --git a/custom-theme/choose_doc_version.html 
b/custom-theme/choose_doc_version.html
index c157022423..1b5fc0f9fc 100644
--- a/custom-theme/choose_doc_version.html
+++ b/custom-theme/choose_doc_version.html
@@ -2,6 +2,9 @@
   
 Version: master
   
+  
+Version: 1.12.0
+  
   
 Version: 1.11.0
   
diff --git a/custom-theme/main-banner.html b/custom-theme/main-banner.html
index a6c797af28..01d1843582 100644
--- a/custom-theme/main-banner.html
+++ b/custom-theme/main-banner.html
@@ -8,7 +8,7 @@
 
 
 
-Latest News: Apache Mynewt 
1.11.0, Apache NimBLE 1.6.0  released (September 7, 2023)
+Latest News: Apache Mynewt 
1.12.0, Apache NimBLE 1.7.0  released (April 4, 2024)
 
 
 
diff --git a/docs/documentation.md b/docs/documentation.md
index 01bbab6de1..ca090a86b6 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -3,6 +3,7 @@
 -   Latest version:
 -   [latest](/latest/)
 -   Earlier versions:
+-   [1.12.0](/v1_12_0/)
 -   [1.11.0](/v1_11_0/)
 -   [1.10.0](/v1_10_0/)
 -   [1.9.0](/v1_9_0/)
diff --git a/docs/download.md b/docs/download.md
index c410e86a90..743ab23279 100644
--- a/docs/download.md
+++ b/docs/download.md
@@ -5,55 +5,55 @@ these [KEYS](https://downloads.apache.org/mynewt/KEYS).
 
 ### Latest Apache Mynewt Core OS Release
 
-*   Release Version: Apache Mynewt 1.11.0
-*   Release Date: September 7, 2023
-*   [Release 
Notes](https://cwiki.apache.org/confluence/display/MYNEWT/RN-1.11.0)
+*   Release Version: Apache Mynewt 1.12.0
+*   Release Date: April 4, 2024
+*   [Release 
Notes](https://cwiki.apache.org/confluence/display/MYNEWT/RN-1.12.0)
 *   Source downloads:
-- Mynewt Core OS: 
[apache-mynewt-core-1.11.0.tgz](https://www.apache.org/dyn/closer.lua/mynewt/apache-mynewt-1.11.0/apache-mynewt-core-1.11.0.tgz)
-  
[[PGP]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-core-1.11.0.tgz.asc)
-  
[[SHA512]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-core-1.11.0.tgz.sha512)
-- Mynewt Blinky template application: [apache-mynewt-blinky-1.11.0.tgz  
](https://www.apache.org/dyn/closer.lua/mynewt/apache-mynewt-1.11.0/apache-mynewt-blinky-1.11.0.tgz)
-  
[[PGP]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-blinky-1.11.0.tgz.asc)
-  
[[SHA512]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-blinky-1.11.0.tgz.sha512)
-- Mynewt build and package management tool (newt): 
[apache-mynewt-newt-1.11.0.tgz](https://www.apache.org/dyn/closer.lua/mynewt/apache-mynewt-1.11.0/apache-mynewt-newt-1.11.0.tgz)
-  
[[PGP]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-newt-1.11.0.tgz.asc)
-  
[[SHA512]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-newt-1.11.0.tgz.sha512)
-- Mynewt Manager tool (newtmgr): 
[apache-mynewt-newtmgr-1.11.0.tgz](https://www.apache.org/dyn/closer.lua/mynewt/apache-mynewt-1.11.0/apache-mynewt-newtmgr-1.11.0.tgz)
-  
[[PGP]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-newtmgr-1.11.0.tgz.asc)
-  
[[SHA512]](https://www.apache.org/dist/mynewt/apache-mynewt-1.11.0/apache-mynewt-newtmgr-1.11.0.tgz.sha512)
 [Note typo in tarball filename!]
+- Mynewt Core OS: 
[apache-mynewt-core-1.12.0.tgz](https://www.apache.org/dyn/closer.lua/mynewt/apache-mynewt-1.12.0/apache-mynewt-core-1.12.0.tgz)
+  
[[PGP]](https://www.apache.org/dist/mynewt/apache-mynewt-1.12.0/apache-mynewt-core-1.12.0.tgz.asc)
+  
[[SHA512]](https://www.apache.org/dist/mynewt/apache-mynewt-1.12.0/apache-mynewt-core-1.12.0.tgz.sha512)
+- Mynewt Blinky template application: [apache-mynewt-blinky-1.12.0.tgz  
](https://www.apache.org/dyn/closer.lua/mynewt/apache-mynewt-1.12.0/apache-mynewt-blinky-1.12.0.tgz)
+  
[[PGP]](https://www.apache.org/dist/mynewt/apache-mynewt-1.12.0/apache-mynewt-blinky-1.12.0.tgz.asc)
+  
[[SHA512]](https://www.apache.org/dist/mynewt/apache-mynewt-1.12.0/apache-mynewt-blinky-1.12.0.tgz.sha512)
+- Mynewt build and package 

[PR] Use master branch for core repository [mynewt-blinky]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #24:
URL: https://github.com/apache/mynewt-blinky/pull/24

   This will be changed upon release, but newt from master downloads blinky 
master and thus all project should be from master branches


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump version to 1.13.0-dev [mynewt-newt]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #552:
URL: https://github.com/apache/mynewt-newt/pull/552

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump version to 1.13.0-dev [mynewt-newtmgr]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #207:
URL: https://github.com/apache/mynewt-newtmgr/pull/207

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Apache NimBLE 1.7.0 release [mynewt-nimble]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #1744:
URL: https://github.com/apache/mynewt-nimble/pull/1744

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release [mynewt-site]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #543:
URL: https://github.com/apache/mynewt-site/pull/543

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(mynewt-nimble) branch master updated: host/ble_audio.c: fix ble_audio_adv_parse_broadcast_announcement

2024-04-04 Thread kopyscinski
This is an automated email from the ASF dual-hosted git repository.

kopyscinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git


The following commit(s) were added to refs/heads/master by this push:
 new 0c6f2fe6b host/ble_audio.c: fix 
ble_audio_adv_parse_broadcast_announcement
0c6f2fe6b is described below

commit 0c6f2fe6b78c3b6ad2a125dc5aa378f122655541
Author: Krzysztof Kopyściński 
AuthorDate: Thu Apr 4 12:38:24 2024 +0200

host/ble_audio.c: fix ble_audio_adv_parse_broadcast_announcement

data->success was set to false at every entry to the funcion. That made
the valid advertising payload fail after parsing
BLE_BROADCAST_PUB_ANNOUNCEMENT_SVC_UUID - final break in block was
reached but the success set in parsing
BLE_BROADCAST_AUDIO_ANNOUNCEMENT_SVC_UUID was cleared.
---
 nimble/host/audio/src/ble_audio.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/nimble/host/audio/src/ble_audio.c 
b/nimble/host/audio/src/ble_audio.c
index f7597aaf7..425334781 100644
--- a/nimble/host/audio/src/ble_audio.c
+++ b/nimble/host/audio/src/ble_audio.c
@@ -47,8 +47,6 @@ ble_audio_adv_parse_broadcast_announcement(const struct 
ble_hs_adv_field *field,
 
 event = >event.broadcast_announcement;
 
-data->success = false;
-
 switch (field->type) {
 case BLE_HS_ADV_TYPE_SVC_DATA_UUID16:
 if (value_len < 2) {



Re: [PR] host/ble_audio.c: fix ble_audio_adv_parse_broadcast_announcement [mynewt-nimble]

2024-04-04 Thread via GitHub


KKopyscinski merged PR #1743:
URL: https://github.com/apache/mynewt-nimble/pull/1743


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] host/ble_audio.c: fix ble_audio_adv_parse_broadcast_announcement [mynewt-nimble]

2024-04-04 Thread via GitHub


KKopyscinski commented on PR #1743:
URL: https://github.com/apache/mynewt-nimble/pull/1743#issuecomment-2036821267

   @MariuszSkamra PTAL


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] host/ble_audio.c: fix ble_audio_adv_parse_broadcast_announcement [mynewt-nimble]

2024-04-04 Thread via GitHub


KKopyscinski opened a new pull request, #1743:
URL: https://github.com/apache/mynewt-nimble/pull/1743

   data->success was set to false at every entry to the funcion. That made the 
valid advertising payload fail after parsing
   BLE_BROADCAST_PUB_ANNOUNCEMENT_SVC_UUID - final break in block was reached 
but the success set in parsing
   BLE_BROADCAST_AUDIO_ANNOUNCEMENT_SVC_UUID was cleared.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Apache Mynewt 1.12.0 release [mynewt-core]

2024-04-04 Thread via GitHub


sjanc opened a new pull request, #3183:
URL: https://github.com/apache/mynewt-core/pull/3183

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] tinyusb/msc_fat_view: Make application version optional in readme [mynewt-core]

2024-04-04 Thread via GitHub


kasjer opened a new pull request, #3181:
URL: https://github.com/apache/mynewt-core/pull/3181

   Generated README.TXT file contains line
   
   App version: 1.2.1.2
   
   This line is generated from image version from SLOT0. This line uses fprintf 
and can increase code size if printf-like functions were not otherwise used.
   Now syscfg value MSC_FAT_VIEW_DEFAULT_README_VERSION can disable line with 
version possibly reducing code size.
   
   Additionally default application name used in README.TXT is taken from 
APP_NAME syscfg value generated by newt tool.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] linux_blemesh example [mynewt-nimble]

2024-04-04 Thread via GitHub


chegewara commented on issue #1742:
URL: https://github.com/apache/mynewt-nimble/issues/1742#issuecomment-2036630047

   Hi,
   i built with `master` branch and only change is to add missing function. 
With `1.7.0-rc1` the same crash.
   I am using android nrf mesh app.
   
   Here is full log
   ```
   looking up peer sec; 
   Bluetooth initialized
   cfg_srv_init: 
   bt_mesh_prov_reset_state: bt_mesh_prov_reset_state
   pub_key_ready: Local public key ready
   Mesh initialized
   bt_mesh_prov_enable: bt_mesh_prov_enable
   bt_mesh_scan_enable: 
   GAP procedure initiated: discovery; own_addr_type=0 filter_policy=0 
passive=1 limited=0 filter_duplicates=0 duration=forever
   mesh_adv_thread: started
   bt_mesh_pb_gatt_adv_start: 
   mesh_adv_thread: PB-GATT Advertising up to -1 ms
   bt_mesh_pb_gatt_enable: 
   bt_mesh_adv_update: 
   bt_mesh_prov_enable: bt_mesh_prov_link.role = _device
   GAP procedure initiated: stop advertising.
   beacon_send: 
   unprovisioned_beacon_send: unprovisioned_beacon_send
   bt_mesh_adv_send: buf 0x56607920, type 0x02 len 23: 
001122
   adv_send: type 2 om_len 23: 001122
   adv_send: count 3 interval 20ms duration 110ms
   GAP procedure initiated: advertise; disc_mode=0 adv_channel_map=0 
own_addr_type=0 adv_filter_policy=0 adv_itvl_min=32 adv_itvl_max=32
   adv_send: Advertising started. Sleeping 110 ms
   GAP procedure initiated: stop advertising.
   adv_send: Advertising stopped (152 ms)
   bt_mesh_pb_gatt_adv_start: 
   GAP procedure initiated: advertise; disc_mode=2 adv_channel_map=0 
own_addr_type=0 adv_filter_policy=0 adv_itvl_min=160 adv_itvl_max=240
   mesh_adv_thread: PB-GATT Advertising up to 6 ms
   bt_mesh_beacon_recv: 22 bytes: 0100875cd2eda774ed5449464180a431ac5b
   secure_beacon_recv: flags 0x00 id 875cd2eda774ed54 iv_index 0x
   secure_beacon_recv: No subnet that matched beacon
   bt_mesh_beacon_recv: 23 bytes: 0068b6b33e25fe
   unprovisioned_beacon_recv: uuid 68b6b33e25fe
   bt_mesh_beacon_recv: 23 bytes: 0068b6b33e25fe
   unprovisioned_beacon_recv: uuid 68b6b33e25fe
   bt_mesh_beacon_recv: 23 bytes: 00308398dccf0a
   unprovisioned_beacon_recv: uuid 308398dccf0a
   bt_mesh_beacon_recv: 23 bytes: 00308398dccf0a
   unprovisioned_beacon_recv: uuid 308398dccf0a
   beacon_send: 
   unprovisioned_beacon_send: unprovisioned_beacon_send
   bt_mesh_adv_send: buf 0x56607920, type 0x02 len 23: 
001122
   GAP procedure initiated: stop advertising.
   adv_send: type 2 om_len 23: 001122
   adv_send: count 3 interval 20ms duration 110ms
   GAP procedure initiated: advertise; disc_mode=0 adv_channel_map=0 
own_addr_type=0 adv_filter_policy=0 adv_itvl_min=32 adv_itvl_max=32
   adv_send: Advertising started. Sleeping 110 ms
   GAP procedure initiated: stop advertising.
   adv_send: Advertising stopped (152 ms)
   bt_mesh_pb_gatt_adv_start: 
   GAP procedure initiated: advertise; disc_mode=2 adv_channel_map=0 
own_addr_type=0 adv_filter_policy=0 adv_itvl_min=1600 adv_itvl_max=1920
   mesh_adv_thread: PB-GATT Advertising up to -1 ms
   bt_mesh_beacon_recv: 23 bytes: 0068b6b33e25fe
   unprovisioned_beacon_recv: uuid 68b6b33e25fe
   bt_mesh_beacon_recv: 23 bytes: 0068b6b33e25fe
   unprovisioned_beacon_recv: uuid 68b6b33e25fe
   bt_mesh_beacon_recv: 23 bytes: 00308398dccf0a
   unprovisioned_beacon_recv: uuid 308398dccf0a
   bt_mesh_beacon_recv: 23 bytes: 00308398dccf0a
   unprovisioned_beacon_recv: uuid 308398dccf0a
   beacon_send: 
   unprovisioned_beacon_send: unprovisioned_beacon_send
   bt_mesh_adv_send: buf 0x56607920, type 0x02 len 23: 
001122
   GAP procedure initiated: stop advertising.
   adv_send: type 2 om_len 23: 001122
   adv_send: count 3 interval 20ms duration 110ms
   GAP procedure initiated: advertise; disc_mode=0 adv_channel_map=0 
own_addr_type=0 adv_filter_policy=0 adv_itvl_min=32 adv_itvl_max=32
   adv_send: Advertising started. Sleeping 110 ms
   GAP procedure initiated: stop advertising.
   adv_send: Advertising stopped (152 ms)
   bt_mesh_pb_gatt_adv_start: 
   GAP procedure initiated: advertise; disc_mode=2 adv_channel_map=0 
own_addr_type=0 adv_filter_policy=0 adv_itvl_min=1600 adv_itvl_max=1920
   mesh_adv_thread: PB-GATT Advertising up to -1 ms
   bt_mesh_beacon_recv: 22 bytes: 0100875cd2eda774ed5449464180a431ac5b
   secure_beacon_recv: flags 0x00 id 875cd2eda774ed54 iv_index 

svn commit: r68306 - /dev/mynewt/apache-mynewt-1.12.0/rc1/ /dev/mynewt/apache-nimble-1.7.0/rc1/ /release/mynewt/apache-mynewt-1.12.0/ /release/mynewt/apache-nimble-1.7.0/

2024-04-04 Thread janc
Author: janc
Date: Thu Apr  4 08:54:11 2024
New Revision: 68306

Log:
Apache Mynewt 1.12.0 and Apache NimBLE 1.7.0 release

Added:
release/mynewt/apache-mynewt-1.12.0/
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-blinky-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-blinky-1.12.0.tgz
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-blinky-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-blinky-1.12.0.tgz.asc
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-blinky-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-blinky-1.12.0.tgz.sha512
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-core-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-core-1.12.0.tgz
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-core-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-core-1.12.0.tgz.asc
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-core-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-core-1.12.0.tgz.sha512
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-1.12.0.tgz
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-1.12.0.tgz.asc
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-1.12.0.tgz.sha512
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-linux-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-linux-1.12.0.tgz

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-linux-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-linux-1.12.0.tgz.asc

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-linux-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-linux-1.12.0.tgz.sha512
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-osx-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-osx-1.12.0.tgz

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-osx-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-osx-1.12.0.tgz.asc

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-osx-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-osx-1.12.0.tgz.sha512

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-windows-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-windows-1.12.0.tgz

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-windows-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-windows-1.12.0.tgz.asc

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newt-bin-windows-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newt-bin-windows-1.12.0.tgz.sha512
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newtmgr-1.12.0.tgz
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newtmgr-1.12.0.tgz.asc
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newtmgr-1.12.0.tgz.sha512

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-bin-linux-1.12.0.tgz
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newtmgr-bin-linux-1.12.0.tgz

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-bin-linux-1.12.0.tgz.asc
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newtmgr-bin-linux-1.12.0.tgz.asc

release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-bin-linux-1.12.0.tgz.sha512
  - copied unchanged from r68305, 
dev/mynewt/apache-mynewt-1.12.0/rc1/apache-mynewt-newtmgr-bin-linux-1.12.0.tgz.sha512
release/mynewt/apache-mynewt-1.12.0/apache-mynewt-newtmgr-bin-osx-1.12.0.tgz
  - copied unchanged from r68305, 

(mynewt-nimble) annotated tag nimble_1_7_0_tag updated (675452b62 -> 16ea5ab36)

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

janc pushed a change to annotated tag nimble_1_7_0_tag
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git


*** WARNING: tag nimble_1_7_0_tag was modified! ***

from 675452b62 (commit)
  to 16ea5ab36 (tag)
 tagging 675452b62822efd3e3fd28ac55eb166baf8461f4 (commit)
 replaces nimble_1_6_0_tag
  by Szymon Janc
  on Thu Apr 4 09:51:32 2024 +0200

- Log -
NimBLE 1.7.0
---


No new revisions were added by this update.

Summary of changes:



(mynewt-blinky) annotated tag mynewt_1_12_0_tag updated (2c2d990 -> 228549c)

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

janc pushed a change to annotated tag mynewt_1_12_0_tag
in repository https://gitbox.apache.org/repos/asf/mynewt-blinky.git


*** WARNING: tag mynewt_1_12_0_tag was modified! ***

from 2c2d990  (commit)
  to 228549c  (tag)
 tagging 2c2d990a96541a9688a5f0d5b5005ed37c6cd082 (commit)
 replaces mynewt_1_11_0_tag
  by Szymon Janc
  on Thu Apr 4 09:51:17 2024 +0200

- Log -
Mynewt 1.12.0
---


No new revisions were added by this update.

Summary of changes:



(mynewt-newtmgr) annotated tag mynewt_1_12_0_tag updated (2462905 -> a5a1df1)

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

janc pushed a change to annotated tag mynewt_1_12_0_tag
in repository https://gitbox.apache.org/repos/asf/mynewt-newtmgr.git


*** WARNING: tag mynewt_1_12_0_tag was modified! ***

from 2462905  (commit)
  to a5a1df1  (tag)
 tagging 2462905c1ba4542676592bdb2a5df4d5e441b153 (commit)
 replaces mynewt_1_11_0_tag
  by Szymon Janc
  on Thu Apr 4 09:51:16 2024 +0200

- Log -
Mynewt 1.12.0
---


No new revisions were added by this update.

Summary of changes:



(mynewt-newt) annotated tag mynewt_1_12_0_tag updated (3a5cfeb3 -> 975b83ab)

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

janc pushed a change to annotated tag mynewt_1_12_0_tag
in repository https://gitbox.apache.org/repos/asf/mynewt-newt.git


*** WARNING: tag mynewt_1_12_0_tag was modified! ***

from 3a5cfeb3 (commit)
  to 975b83ab (tag)
 tagging 3a5cfeb31a36847f727f77046cd52cdeb177029c (commit)
 replaces mynewt_1_11_0_tag
  by Szymon Janc
  on Thu Apr 4 09:51:15 2024 +0200

- Log -
Mynewt 1.12.0
---


No new revisions were added by this update.

Summary of changes:



(mynewt-core) annotated tag mynewt_1_12_0_tag updated (c95f54c3e -> 4ac8a0c18)

2024-04-04 Thread janc
This is an automated email from the ASF dual-hosted git repository.

janc pushed a change to annotated tag mynewt_1_12_0_tag
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


*** WARNING: tag mynewt_1_12_0_tag was modified! ***

from c95f54c3e (commit)
  to 4ac8a0c18 (tag)
 tagging c95f54c3e7a90005e54e27c225fee89294b4b2f7 (commit)
 replaces mynewt_1_11_0_tag
  by Szymon Janc
  on Thu Apr 4 09:50:42 2024 +0200

- Log -
Mynewt 1.12.0
---


No new revisions were added by this update.

Summary of changes:



Re: [I] linux_blemesh example [mynewt-nimble]

2024-04-04 Thread via GitHub


KKopyscinski commented on issue #1742:
URL: https://github.com/apache/mynewt-nimble/issues/1742#issuecomment-2036371401

   I built this locally and provisioned device using nRF Mesh app on phone. I 
do not get segfault anywhere, but I do not get composition data. I built the 
blemesh app on `nimble_1_7_0_rc1_tag` commit, with the added missing function. 
Could you please provide backtrace? Or more data from the crash log


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org