mirror of
				https://github.com/Telecominfraproject/wlan-cloud-workspace.git
				synced 2025-10-31 10:47:54 +00:00 
			
		
		
		
	Compare commits
	
		
			98 Commits
		
	
	
		
			v1.0.0-rc2
			...
			release/v1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | efb34de3f1 | ||
|   | 8282c9cf27 | ||
|   | 0b9a65e810 | ||
|   | 73727dca09 | ||
|   | ad67765358 | ||
|   | f029a2f9df | ||
|   | 720ce832ec | ||
|   | df9e7102f6 | ||
|   | 9b343a7a3e | ||
|   | 123ee30123 | ||
|   | 957613d88d | ||
|   | d1ad3c0a2e | ||
|   | 4103afffb7 | ||
|   | d108f3cb4d | ||
|   | cd88311d9d | ||
|   | 6ba012a9c4 | ||
|   | 4430fc9d82 | ||
|   | 29c26fcd3f | ||
|   | 8779ba17c9 | ||
|   | 34793f06d5 | ||
|   | 49eeb45392 | ||
|   | 89a00021ce | ||
|   | 89d6960a69 | ||
|   | 8b18bd7031 | ||
|   | f61cb56bf4 | ||
|   | 50a4ab4d7d | ||
|   | 6c83a8eeda | ||
|   | ccd99b96e0 | ||
|   | 21d8ad82a6 | ||
|   | b78ba6b9f8 | ||
|   | 3ee088bd94 | ||
|   | aa36f6ac86 | ||
|   | cbb811587f | ||
|   | baf67c8b6e | ||
|   | 49d85641d9 | ||
|   | 0ce42d6fa2 | ||
|   | 1ae5911d28 | ||
|   | a21f8157e0 | ||
|   | f59dfe4ae1 | ||
|   | 6b9dc5927b | ||
|   | 05bede7c95 | ||
|   | d6bb878b04 | ||
|   | aefbee5f25 | ||
|   | 09c975a35c | ||
|   | d295fccf24 | ||
|   | 382fac0e7c | ||
|   | fc2523f09f | ||
|   | 230fb9f825 | ||
|   | 02827cd29d | ||
|   | 8de25f9b2e | ||
|   | 1acd399ba3 | ||
|   | 4b8ee0103b | ||
|   | 857927621c | ||
|   | f1321bd0ac | ||
|   | 50c9d40f55 | ||
|   | 6ad82d527e | ||
|   | 2349ce57da | ||
|   | 40e342ac57 | ||
|   | 33cac70b7e | ||
|   | 7e99a282cd | ||
|   | fe7cb6edeb | ||
|   | cf87fb592f | ||
|   | 77a2389dac | ||
|   | 7245c62351 | ||
|   | 090463bb52 | ||
|   | c2d3e5fd3d | ||
|   | 183eadfc0a | ||
|   | 8074cd8eec | ||
|   | 1f3c7cdb4c | ||
|   | 3cb7ffeb7d | ||
|   | 5f6f8254fe | ||
|   | 4600c7ea39 | ||
|   | f1980285fd | ||
|   | c02e36a11a | ||
|   | 145cf47130 | ||
|   | 522dfa5978 | ||
|   | fc34d6bb26 | ||
|   | b097facb79 | ||
|   | 5e5bbf8a43 | ||
|   | d461ba15e6 | ||
|   | 6b128230d7 | ||
|   | 9a872cbdfc | ||
|   | ebae3b537a | ||
|   | dad7486ce7 | ||
|   | 1d5bd3e3d8 | ||
|   | 61602bc5cd | ||
|   | 0761196671 | ||
|   | 1f93d2ef6d | ||
|   | 0bb6668e5e | ||
|   | 4ab979d1e9 | ||
|   | 3f22aad094 | ||
|   | 1f2736e458 | ||
|   | cd50fe6d42 | ||
|   | c8f7582d7d | ||
|   | a38614d96b | ||
|   | 870ec8b9a9 | ||
|   | 06661dbf42 | ||
|   | ab78022a86 | 
| @@ -3,7 +3,7 @@ | ||||
| 	<parent> | ||||
| 		<groupId>com.telecominfraproject.wlan</groupId> | ||||
| 		<artifactId>tip-wlan-cloud-root-pom</artifactId> | ||||
| 		<version>1.0.0-SNAPSHOT</version> | ||||
| 		<version>1.1.0-SNAPSHOT</version> | ||||
| 		<relativePath>../wlan-cloud-root</relativePath> | ||||
| 	</parent> | ||||
|  | ||||
|   | ||||
| @@ -11,14 +11,15 @@ new_version=$1 | ||||
| PREVIOUS_VERSION=$(grep "<version>" ../wlan-cloud-root/pom.xml |head -2|tail -1|cut -d '>' -f2|cut -d '<' -f 1) | ||||
| echo "Updating TIP pom.xml files from $PREVIOUS_VERSION to version $new_version " | ||||
|  | ||||
| # update versions on TIP modules using special all-modules-release | ||||
| # update versions on TIP modules using special all-modules-release   | ||||
| mvn  --batch-mode release:update-versions -DdevelopmentVersion="$new_version" -DautoVersionSubmodules=true | ||||
|  | ||||
|  | ||||
| # update version that are not automatically updated  | ||||
| # update version that are not automatically updated | ||||
| sed -i '' "s/<tip-wlan-cloud.release.version>$PREVIOUS_VERSION<\/tip-wlan-cloud.release.version>/<tip-wlan-cloud.release.version>$new_version<\/tip-wlan-cloud.release.version>/g" ../wlan-cloud-root/pom.xml | ||||
|  | ||||
| #update protobuff dependency under opensync-ext-interface | ||||
| sed -i '' "s/<version>$PREVIOUS_VERSION<\/version>/<version>$new_version<\/version>/g" ../wlan-cloud-opensync-controller/opensync-ext-interface/pom.xml | ||||
|  | ||||
| echo "Updated TIP pom.xml files to version $new_version" | ||||
|  | ||||
|   | ||||
| @@ -3,7 +3,7 @@ | ||||
|         <parent> | ||||
| 			<groupId>com.telecominfraproject.wlan</groupId> | ||||
| 			<artifactId>tip-wlan-cloud-root-pom</artifactId> | ||||
| 			<version>1.0.0-SNAPSHOT</version> | ||||
| 			<version>1.1.0-SNAPSHOT</version> | ||||
| 			<relativePath>../wlan-cloud-root</relativePath> | ||||
|         </parent> | ||||
|  | ||||
|   | ||||
 Submodule wlan-cloud-base updated: c94a81114a...b1cc93b9df
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							 Submodule wlan-cloud-opensync-controller updated: 3953bbc179...af604289cc
									
								
							 Submodule wlan-cloud-root updated: cbfda90e34...069b8886ab
									
								
							 Submodule wlan-cloud-services updated: a66ac7ff8a...d35a7af319
									
								
							
		Reference in New Issue
	
	Block a user