Skip to content

Commit

Permalink
v1.5.1 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
2XXE-SRA committed Oct 25, 2024
1 parent c0cf5dc commit 900f865
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
***

# Version 1.5.1 - October 2024

- Fix bug with overrides applying incorrectly

***

# Version 1.5.0 - August 2024

- Fix bug with extensions when using linked data
Expand Down
Binary file not shown.
9 changes: 6 additions & 3 deletions libmm/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,12 @@ def render(self, apply_overrides: bool = True, blueprint_id: str = None):
if override:
# doing this individually as overrides only cover a few fields
# in the future, might do this more dynamically
metadata["x_references"] = override.references
final_dict["name"] = override.display_name
final_dict["guidance"] = override.guidance
if override.references:
metadata["x_references"] = override.references
if override.display_name:
final_dict["name"] = override.display_name
if override.guidance:
final_dict["guidance"] = override.guidance

# add groups if feature is enabled
if global_settings.add_groups:
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 = "marketmaker"
version = "1.5.0"
version = "1.5.1"
description = "Suite of tools for managing and creating attack plans"
authors = ["2XXE <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 900f865

Please sign in to comment.