Skip to content

Commit

Permalink
Release v1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
aentinger committed Dec 13, 2022
1 parent a23f623 commit 10ef052
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ int main(int argc, char **argv) try

return EXIT_SUCCESS;
}
catch (dynamixelplusplus::CommunicationError const & e)
catch (CommunicationError const & e)
{
std::cerr << "CommunicationError caught: " << e.what() << std::endl;
return EXIT_FAILURE;
}
catch (dynamixelplusplus::StatusError const & e)
catch (StatusError const & e)
{
std::cerr << "StatusError caught: " << e.what() << std::endl;
return EXIT_FAILURE;
Expand Down
4 changes: 2 additions & 2 deletions examples/example-xx-minimal/example-xx-minimal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ int main(int argc, char **argv) try

return EXIT_SUCCESS;
}
catch (dynamixelplusplus::CommunicationError const & e)
catch (CommunicationError const & e)
{
std::cerr << "CommunicationError caught: " << e.what() << std::endl;
return EXIT_FAILURE;
}
catch (dynamixelplusplus::StatusError const & e)
catch (StatusError const & e)
{
std::cerr << "StatusError caught: " << e.what() << std::endl;
return EXIT_FAILURE;
Expand Down
2 changes: 1 addition & 1 deletion include/dynamixel++/Dynamixel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
**************************************************************************************/

#define _107_LIBDYNAMIXELPLUSPLUS_BASE_MAJOR 0001
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_MINOR 0000
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_MINOR 0001
#define _107_LIBDYNAMIXELPLUSPLUS_BASE_PATCH 0000

#define _107_LIBDYNAMIXELPLUSPLUS_BASE_CONCAT_VERSION_(a,b,c) a ## b ## c
Expand Down

0 comments on commit 10ef052

Please sign in to comment.