Skip to content

Commit

Permalink
Bump version number to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanoBilenchi committed Oct 14, 2021
1 parent d985be1 commit f0e4cd8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ All notable changes to Cowl will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
Cowl adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.1] - 2021-10-14
### Added
- `cowl_ontology_has_entity`.
- `cowl_iterator_vec_init` and `cowl_iterator_set_init`.

### Changed
- Renamed `CowlOntologyID` to `CowlOntologyId`.
- Changed argument order of `*_iterate_primitives` functions to match convention.
- Reworked parser build logic.

### Removed
- `cowl_cls_exp_set_alloc`, `cowl_data_prop_exp_set_alloc`, `cowl_data_range_set_alloc`,
`cowl_facet_restr_set_alloc`, `cowl_individual_set_alloc`, `cowl_literal_set_alloc`,
`cowl_obj_prop_exp_set_alloc` (use plain `uhset_alloc(CowlObjectTable)` instead).

### Fixed
- UaF in `cowl_logger_release`.
- Return of incomplete `CowlOntologyID` type.
- Compilation via MSVC.
- Warnings when compiling via GCC.
- Warnings due to macros expanding to empty statements.

## [0.5.0] - 2021-03-28
### Added
- Support for multiple parsers via `CowlReader` and `CowlParser` API.
Expand Down Expand Up @@ -158,6 +180,7 @@ Cowl adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Ontology querying API.
- Logging API.

[0.5.1]: https://github.com/sisinflab-swot/cowl/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/sisinflab-swot/cowl/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/sisinflab-swot/cowl/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/sisinflab-swot/cowl/compare/v0.3.0...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake" "${CMAKE_MODULE_PATH}")

set(COWL_VERSION_MAJOR 0)
set(COWL_VERSION_MINOR 5)
set(COWL_VERSION_PATCH 0)
set(COWL_VERSION_PATCH 1)
set(COWL_VERSION "${COWL_VERSION_MAJOR}.${COWL_VERSION_MINOR}.${COWL_VERSION_PATCH}")

set(COWL_VENDOR "SisInf Lab, Polytechnic University of Bari")
Expand Down

0 comments on commit f0e4cd8

Please sign in to comment.