Merge pull request #68 from adafruit/develop
update changelog for 0.2.11 releasing
This commit is contained in:
		@@ -1,4 +1,6 @@
 | 
				
			|||||||
# Adafruit Bluefruit nRF52 Bootloader
 | 
					# Adafruit nRF52 Bootloader
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[](https://travis-ci.com/adafruit/Adafruit_nRF52_Bootloader)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
This is a CDC/DFU/UF2 bootloader for nRF52 boards.
 | 
					This is a CDC/DFU/UF2 bootloader for nRF52 boards.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,10 +1,14 @@
 | 
				
			|||||||
# Adafruit nRF52 Bootloader Changelog
 | 
					# Adafruit nRF52 Bootloader Changelog
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 0.2.10
 | 
					## 0.2.11
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Fixed various FAT issues, thanks to @henrygab
 | 
					- Fixed various FAT issues, thanks to @henrygab
 | 
				
			||||||
- Added MakerDiary MDK nrf52840 USB dongle support, thanks to @gpshead
 | 
					- Added MakerDiary MDK nrf52840 USB dongle support, thanks to @gpshead
 | 
				
			||||||
- Fixed incorrect button mapping for Feather nRF52840
 | 
					- Fixed incorrect button mapping for Feather nRF52840
 | 
				
			||||||
 | 
					- NFC pins are forced to GPIO mode by bootloader
 | 
				
			||||||
 | 
					- Added Metro nRF52840 Express VID/PID
 | 
				
			||||||
 | 
					- Enhance board management
 | 
				
			||||||
 | 
					- Added electronut/papyr_support 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 0.2.9
 | 
					## 0.2.9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,10 +7,8 @@ import time
 | 
				
			|||||||
subprocess.run("rm -rf _build*", shell=True)
 | 
					subprocess.run("rm -rf _build*", shell=True)
 | 
				
			||||||
subprocess.run("rm -rf bin/*", shell=True)
 | 
					subprocess.run("rm -rf bin/*", shell=True)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PARALLEL = "-j 5"
 | 
					 | 
				
			||||||
travis = False
 | 
					travis = False
 | 
				
			||||||
if "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true":
 | 
					if "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true":
 | 
				
			||||||
    PARALLEL="-j 2"
 | 
					 | 
				
			||||||
    travis = True
 | 
					    travis = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exit_status = 0
 | 
					exit_status = 0
 | 
				
			||||||
@@ -21,12 +19,14 @@ for entry in os.scandir("src/boards"):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#sha, version = build_info.get_version_info()
 | 
					#sha, version = build_info.get_version_info()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					total_time = time.monotonic()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
for board in all_boards:
 | 
					for board in all_boards:
 | 
				
			||||||
    bin_directory = "bin/{}/".format(board)
 | 
					    bin_directory = "bin/{}/".format(board)
 | 
				
			||||||
    os.makedirs(bin_directory, exist_ok=True)
 | 
					    os.makedirs(bin_directory, exist_ok=True)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    start_time = time.monotonic()
 | 
					    start_time = time.monotonic()
 | 
				
			||||||
    make_result = subprocess.run("make BOARD={} combinehex genpkg".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
 | 
					    make_result = subprocess.run("make -j 4 BOARD={} combinehex genpkg".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
 | 
				
			||||||
    build_duration = time.monotonic() - start_time
 | 
					    build_duration = time.monotonic() - start_time
 | 
				
			||||||
    success = "\033[32msucceeded\033[0m"
 | 
					    success = "\033[32msucceeded\033[0m"
 | 
				
			||||||
    if make_result.returncode != 0:
 | 
					    if make_result.returncode != 0:
 | 
				
			||||||
@@ -48,4 +48,7 @@ for board in all_boards:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    print()
 | 
					    print()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					total_time = time.monotonic() - total_time
 | 
				
			||||||
 | 
					print("Total build time took {:.2f}s".format(total_time))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
sys.exit(exit_status)
 | 
					sys.exit(exit_status)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user