diff --git a/CHANGELOG.md b/CHANGELOG.md index f9c2691..d3bc01f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ middleclass changelog ==================== +Version 3.2.0 + +* Changed the way metamethods were handled to fix certain bugs (un-stubbed metamethods could not be inherited) + Version 3.1.0 * Added Lua 5.3 metamethod support (`__band`, `__bor`, `__bxor`, `__shl`, `__bnot`) diff --git a/middleclass.lua b/middleclass.lua index 2c9a366..4fa0523 100644 --- a/middleclass.lua +++ b/middleclass.lua @@ -1,5 +1,5 @@ local middleclass = { - _VERSION = 'middleclass v3.1.0', + _VERSION = 'middleclass v3.2.0', _DESCRIPTION = 'Object Orientation for Lua', _URL = 'https://github.com/kikito/middleclass', _LICENSE = [[