diff --git a/changelog.txt b/changelog.txt index 5408422..d0c876f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +Version 1.3.3 + + * Bugfix for incorrect file install destination + * Check if packages in find_package() need to be REQUIRED + * Check that command names are lower-case as recommended + * Minor code cleanup + Version 1.3.2 * Additional coding style checks diff --git a/src/catkin_lint/__init__.py b/src/catkin_lint/__init__.py index 38ddb2e..3f4605d 100644 --- a/src/catkin_lint/__init__.py +++ b/src/catkin_lint/__init__.py @@ -4,6 +4,6 @@ __author__ = "Timo Röhling " __copyright__ = "Copyright (c) 2013,2014 Fraunhofer FKIE" __license__ = "BSD" -__version__ = "1.3.2" +__version__ = "1.3.3" __all__ = [ "cmake", "diagnostics", "linter", "main", "output", "util" ]