Skip to content

Commit

Permalink
Merge pull request #24 from turlucode/develop
Browse files Browse the repository at this point in the history
Version 3.0.3
  • Loading branch information
turlucode authored Sep 19, 2024
2 parents f901845 + 5b4f20f commit b10634f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.0.3] - 2024-09-19

### Fixed
- Fixed issue in the parsing of the "extra packages" where, if a custom version was specified, it was neglected and always the latest was being picked.

## [3.0.2] - 2024-07-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "turludock"
version = "3.0.2"
version = "3.0.3"
description = "Builds ROS docker images that support GUI with either X11 or Wayland."
authors = [
"Athanasios <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion turludock/generate_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _get_item_from_extra_packages(extra_packages: list, package_name: str) -> Op
return item
if isinstance(item, str) and item == package_name:
return item
return None
return None


def _generate_description(yaml_config: Dict[str, Any]) -> str:
Expand Down

0 comments on commit b10634f

Please sign in to comment.