mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			276 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			276 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -eu
 | |
| 
 | |
| VERSION="$1"
 | |
| CHANGELOG="$2"
 | |
| ARDUINOJSON_H="$3"
 | |
| 
 | |
| cat << END
 | |
| ---
 | |
| branch: v6
 | |
| version: $VERSION
 | |
| date: '$(date +'%Y-%m-%d')'
 | |
| $(extras/scripts/wandbox/publish.sh "$ARDUINOJSON_H")
 | |
| ---
 | |
| 
 | |
| $(awk '/\* /{ FOUND=1; print; next } { if (FOUND) exit}' "$CHANGELOG")
 | |
| END
 |