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 {}