Revision history for Pony::Object
1.02 10-01-2017
- Fix tests for Perl < 5.020.
1.01 09-01-2017
- Add params for methods.
1.00 05-08-2013
- Fix problem with die in try.
0.11 01-07-2013
- Add option ':noobject' for using Pony without objects.
0.10 13-06-2013
- Fix tests.
- Requires perl-5.12 or higher.
0.09 12-06-2013
- Fix private logic (thanks to vrurg).
- Fix 'has' methods.
- Fix for perl 5.17.11.
- Add static properties.
0.08 06-06-2013
- Add $Pony::Object::DEFAULT to define project's default Pony's options.
- Try/catch/finally returns result to scalar/array.
- Add option ':noexceptions' to disable try/catch/finally blocks.
0.07 04-06-2013
- Try/catch/finally blocks are optional. Use ':exceptions' param to use them.
- Add alias 'to_h' for 'toHash'.
0.06 16-02-2013
- Add try/catch/finally blocks for exception catching.
- Add Pony::Object::Throwable -- base class for exceptions.
0.05 19-08-2012
- Fix two bugs.
0.04 11-06-2012
- Add abstract classes and methods support;
- Add META - introspection method.
0.02 20-04-2012
- Add access privacy for methods and properties;
- Add support keywords protected, public, private for properties;
- Add privacy guessing for keyword 'has';
- Add method attributes Protected, Public, Private;
- Fix problem with properties inheritance.
0.01 10-01-2012
- Add support singletons 'from the box';
- Add properties inheritance;
- Add dump method for all objects for easily debug;
- Fix problem with deep copy;
- Add ALL method - get all properties.
0.00 08-10-2011
- Add support keyword 'has' for properties;
- Add strict and modern import;
- Add nice accessors for properties.