In Pharo 5 the "properties" API is unified (means you can associate properties to classes, methods, packages, ...). Really cool and a good step toward a unified and more flexible system.
Exampel: |pck| pck := #'Foo-Kernel' asPackage. pck propertyAt: #'lastModified' put: DateAndTime now asString. pck propertyAt: #'generatedUsing' put: 'Pharo DynaCase'. pck properties So far it looks like the package properties are still transient - that means when you save the package and load in another image they will be empty again. Havent tried for class properties, ... Will this change in the near future so they are persistent? I wonder what the plans an next steps are in this area. Thanks T.
