Skip to content

Commit 1fd85e3

Browse files
authored
Release/v0.2.0 (#28)
* Add versions.md file Signed-off-by: jparisu <javierparis@eprosima.com> * Bump to version 0.2.0 Signed-off-by: jparisu <javierparis@eprosima.com> * apply suggestions Signed-off-by: jparisu <javierparis@eprosima.com> Signed-off-by: jparisu <javierparis@eprosima.com>
1 parent dd327d3 commit 1fd85e3

5 files changed

Lines changed: 56 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The packages that conform this repository are:
1414

1515
* **CMake utils**: `cmake_utils` CMake utilities to build packages.
1616
* **C++ utils**: `cpp_utils` C++ classes and functions for common use.
17+
* **Dev utils**: `dev_utils` Tools and applications to help in code development.
1718

1819
## Documentation
1920

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
VERSION_MAJOR 0
2-
VERSION_MINOR 1
2+
VERSION_MINOR 2
33
VERSION_PATCH 0

cmake_utils/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>cmake_utils</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
*eprosima* CMake utils and macros.
88
</description>

cpp_utils/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>cpp_utils</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
*eprosima* Dev Utils Module is a C++ implementation for some generic utils methods and classes.
88
</description>

versions.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# dev-utils Versions
2+
3+
This file includes the released versions of **dev-utils** project along with their contributions to the project.
4+
The *Forthcoming* section includes those features added in `main` branch that are not yet in a stable release.
5+
6+
## Forthcoming
7+
8+
## Version 0.2.0
9+
10+
* New sub-packages included:
11+
* **dev_utils** package with tools for programmers to help in implementation process
12+
* Code auto-generator for Custom Enumerations.
13+
14+
* Sub-packages updated:
15+
* **cmake_utils**
16+
* Support minimum version requirement when finding a package.
17+
* **cpp_utils**
18+
* Logging module
19+
* Simplify and fixed TSAN issue.
20+
* Math module
21+
* New Random Manager class
22+
* Types module
23+
* New Singleton Auxiliary class
24+
25+
* CI new features:
26+
* Address Sanitizer check for all tests.
27+
* Thread Sanitizer check for all tests.
28+
* `-Wall` warning level for CI.
29+
* Add Python linter check in CI.
30+
31+
## Version 0.1.0
32+
33+
* First version of **dev-utils**.
34+
* Packages and functionality included:
35+
* **cmake_utils**: tools for CMake builds and common macros and functions.
36+
* **cpp_utils**: C++ library for utilities and implementations.
37+
* Event module
38+
* Exception module
39+
* Logging module
40+
* Macros module
41+
* Math module
42+
* Memory module
43+
* Pool module
44+
* Testing module
45+
* ThreadPool module
46+
* Time module
47+
* Types module
48+
* Wait module
49+
50+
* CI features:
51+
* CI based on Github actions.
52+
* Test for all the main modules.

0 commit comments

Comments
 (0)