ros-parser 0.3.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {ros_parser-0.3.0 → ros_parser-0.4.0}/PKG-INFO +1 -1
  2. {ros_parser-0.3.0 → ros_parser-0.4.0}/pyproject.toml +1 -1
  3. {ros_parser-0.3.0 → ros_parser-0.4.0}/README.md +0 -0
  4. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/__init__.py +0 -0
  5. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/_lark_standalone_runtime.py +0 -0
  6. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/_utils.py +0 -0
  7. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/README.md +0 -0
  8. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/__init__.py +0 -0
  9. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/_standalone_parser.py +0 -0
  10. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/_standalone_parser.pyi +0 -0
  11. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/grammar.lark +0 -0
  12. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/models.py +0 -0
  13. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/message_path/parser.py +0 -0
  14. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/models.py +0 -0
  15. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/py.typed +0 -0
  16. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros1_msg/__init__.py +0 -0
  17. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros1_msg/_standalone_parser.py +0 -0
  18. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros1_msg/_standalone_parser.pyi +0 -0
  19. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros1_msg/grammar.lark +0 -0
  20. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros1_msg/parser.py +0 -0
  21. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros1_msg/schema_parser.py +0 -0
  22. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros2_msg/__init__.py +0 -0
  23. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros2_msg/_standalone_parser.py +0 -0
  24. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros2_msg/_standalone_parser.pyi +0 -0
  25. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros2_msg/grammar.lark +0 -0
  26. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros2_msg/parser.py +0 -0
  27. {ros_parser-0.3.0 → ros_parser-0.4.0}/src/ros_parser/ros2_msg/schema_parser.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ros-parser
3
- Version: 0.3.0
3
+ Version: 0.4.0
4
4
  Summary: Python parser for ROS message definitions and Foxglove message path syntax
5
5
  Keywords: ros,ros1,ros2,parser,message,robotics
6
6
  Author: Marko Bausch
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ros-parser"
3
- version = "0.3.0"
3
+ version = "0.4.0"
4
4
  description = "Python parser for ROS message definitions and Foxglove message path syntax"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes