Hey SAS-C,
I know there was release yesterday, but just FYI.
Don't forget to give it a "star" at GitHub 🙂
All the best
Bart
SAS Packages Framework, version 20260126
As usual available at https://github.com/yabwon/SAS_PACKAGES
Packages' metadata (version, authors, etc.) are now easier to get.
Changes and modifications:
A) When a package is created the %generatePackage() macro adds a utility FCMP function <packageName>META() and a utility macro <%packageName>META() that allow to extract package's metadata easier.
B) Documentation updated.
C) Packages regenerated with the latest version of the framework:
Examples
Example 1. Check version and authors of the BasePlus package:
%loadPackage(BasePlus)
data _null_;
v = BasePlusMeta("version");
put v=;
run;
%put %BasePlusMeta(Authors);