From 731a95ef11d9f6d72df284205d7e2646991ea938 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Mon, 3 Jan 2022 15:47:30 -0800 Subject: [PATCH] Plugins/Plang: rename Grammar to ParseRules --- lib/PBot/Plugin/Plang.pm | 2 +- lib/PBot/VERSION.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/PBot/Plugin/Plang.pm b/lib/PBot/Plugin/Plang.pm index 15f18e8b..68f6d8af 100644 --- a/lib/PBot/Plugin/Plang.pm +++ b/lib/PBot/Plugin/Plang.pm @@ -21,7 +21,7 @@ sub initialize { # require all the Plang .pm modules for Module::Refresh require "$path/Interpreter.pm"; require "$path/AstInterpreter.pm"; - require "$path/Grammar.pm"; # FIXME: Module::Refresh doesn't like this one + require "$path/ParseRules.pm"; # FIXME: Module::Refresh doesn't like this one require "$path/Parser.pm"; require "$path/Lexer.pm"; require "$path/Types.pm"; diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index a3125b22..d44b4c54 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,8 +25,8 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4430, - BUILD_DATE => "2022-01-01", + BUILD_REVISION => 4432, + BUILD_DATE => "2022-01-03", }; sub initialize {}