Compare commits
	
		
			2 Commits
		
	
	
		
			3d77ff0820
			...
			e3d72fb14e
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| e3d72fb14e | |||
| 014152fc89 | 
@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 | 
			
		||||
 | 
			
		||||
## [Unreleased]
 | 
			
		||||
 | 
			
		||||
## [1.9.1] - 2024-05-10
 | 
			
		||||
 | 
			
		||||
### Fixed
 | 
			
		||||
 | 
			
		||||
- Fix breakdown model error that was preventing a zero value to be written in
 | 
			
		||||
  the PRV trace.
 | 
			
		||||
- Fix gcc 11.3.1 -Wstringop-overflow warning.
 | 
			
		||||
 | 
			
		||||
## [1.9.0] - 2024-04-25
 | 
			
		||||
 | 
			
		||||
@ -243,6 +246,7 @@ are used along with some other changes.
 | 
			
		||||
- First ovni release.
 | 
			
		||||
 | 
			
		||||
[unreleased]: https://jungle.bsc.es/git/rarias/ovni
 | 
			
		||||
[1.9.1]: https://github.com/rodarima/ovni/releases/tag/1.9.1
 | 
			
		||||
[1.9.0]: https://github.com/rodarima/ovni/releases/tag/1.9.0
 | 
			
		||||
[1.8.0]: https://github.com/rodarima/ovni/releases/tag/1.8.0
 | 
			
		||||
[1.7.0]: https://github.com/rodarima/ovni/releases/tag/1.7.0
 | 
			
		||||
 | 
			
		||||
@ -3,7 +3,7 @@
 | 
			
		||||
 | 
			
		||||
cmake_minimum_required(VERSION 3.20)
 | 
			
		||||
 | 
			
		||||
project(OVNI LANGUAGES C VERSION 1.9.0)
 | 
			
		||||
project(OVNI LANGUAGES C VERSION 1.9.1)
 | 
			
		||||
 | 
			
		||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -64,7 +64,7 @@ model_evspec_init(struct model_evspec *evspec, struct model_spec *spec)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
struct ev_spec *
 | 
			
		||||
model_evspec_find(struct model_evspec *evspec, char mcv[4])
 | 
			
		||||
model_evspec_find(struct model_evspec *evspec, char *mcv)
 | 
			
		||||
{
 | 
			
		||||
	struct ev_spec *s = NULL;
 | 
			
		||||
	HASH_FIND_STR(evspec->spec, mcv, s);
 | 
			
		||||
 | 
			
		||||
@ -19,6 +19,6 @@ struct model_evspec {
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
USE_RET int model_evspec_init(struct model_evspec *evspec, struct model_spec *spec);
 | 
			
		||||
USE_RET struct ev_spec *model_evspec_find(struct model_evspec *evspec, char mcv[4]);
 | 
			
		||||
USE_RET struct ev_spec *model_evspec_find(struct model_evspec *evspec, char *mcv);
 | 
			
		||||
 | 
			
		||||
#endif /* MODEL_EVSPEC_H */
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user