The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for Rope

0.01    Date/time
        First version, released on an unsuspecting world.

0.08    2024-02-06
	Set minimum perl version 5.18.

0.11    2024-03-28
	Ensure any passed index takes precedents over the auto generated index

0.12    2024-03-29
	Expose the locking functonality via the locked keyword.

0.13    2024-03-29
	- Fix scoping to achieve this you now have to explicity call ->destroy, especially under a long running process like a daemon or web service
	- Add triggers that are called on setting and deletiong of a value

0.14    2024-03-29
	- Adds delete_trigger which allows you to explicitly set a trigger just when deleting, this removes the need for conditional code (is it a set or delete) when using triggers.

0.15    2024-03-29
	- Adds get_initialised function which can be called on Rope to retrieve an already initialised object by index.
	- Adds before, around and after keywords which can be chained and work for all properties/functions, not traditional subs currently because they are effectively 'hidden' to Rope.

0.16    2024-03-29
	- Fix before, around and after to only work on readonly functions (properties that have a value as a code ref), to prevent unexpected behaviour.

0.17    2024-03-29
	- Adds get_meta to return the objects definition
	- Adds Rope::Monkey which takes the monkey patch approach to achieve autoloading, each for their own.