Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit 10ef052

Browse files
committed
Release v1.1.0.
1 parent a23f623 commit 10ef052

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ int main(int argc, char **argv) try
5959

6060
return EXIT_SUCCESS;
6161
}
62-
catch (dynamixelplusplus::CommunicationError const & e)
62+
catch (CommunicationError const & e)
6363
{
6464
std::cerr << "CommunicationError caught: " << e.what() << std::endl;
6565
return EXIT_FAILURE;
6666
}
67-
catch (dynamixelplusplus::StatusError const & e)
67+
catch (StatusError const & e)
6868
{
6969
std::cerr << "StatusError caught: " << e.what() << std::endl;
7070
return EXIT_FAILURE;

examples/example-xx-minimal/example-xx-minimal.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ int main(int argc, char **argv) try
3434

3535
return EXIT_SUCCESS;
3636
}
37-
catch (dynamixelplusplus::CommunicationError const & e)
37+
catch (CommunicationError const & e)
3838
{
3939
std::cerr << "CommunicationError caught: " << e.what() << std::endl;
4040
return EXIT_FAILURE;
4141
}
42-
catch (dynamixelplusplus::StatusError const & e)
42+
catch (StatusError const & e)
4343
{
4444
std::cerr << "StatusError caught: " << e.what() << std::endl;
4545
return EXIT_FAILURE;

include/dynamixel++/Dynamixel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
**************************************************************************************/
3131

3232
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_MAJOR 0001
33-
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_MINOR 0000
33+
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_MINOR 0001
3434
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_PATCH 0000
3535

3636
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_CONCAT_VERSION_(a,b,c) a ## b ## c

0 commit comments

Comments
 (0)