From 900eac9a1c596bf27c6815c3d06c4cfe9f7acfa1 Mon Sep 17 00:00:00 2001 From: Jeff McFadden Date: Wed, 19 Feb 2025 11:15:18 -0700 Subject: [PATCH 1/2] Fix bug in normalized_field_value_name. --- lib/ghx/project_item.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ghx/project_item.rb b/lib/ghx/project_item.rb index 6e36736..e2b65e4 100644 --- a/lib/ghx/project_item.rb +++ b/lib/ghx/project_item.rb @@ -185,7 +185,7 @@ def _setup_field_configuration(field_configuration) end def normalized_field_value_name(name) - name.tr(" ", "_").downcase + name.tr(" ", "_").tr("-", "_").downcase end # Extracts the value from the field based on the field's data type. Thank you GraphQL for making this totally asinine. From 9fe3ebe77f213119edcab85343f24807f51691cd Mon Sep 17 00:00:00 2001 From: Jeff McFadden Date: Wed, 19 Feb 2025 11:16:41 -0700 Subject: [PATCH 2/2] Bump version. --- lib/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/version.rb b/lib/version.rb index 5995934..9e317d1 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,3 +1,3 @@ module GHX - VERSION = "0.4.0" + VERSION = "0.4.1" end