summaryrefslogtreecommitdiff
path: root/CHANGES.current
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2016-03-22 20:48:28 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2016-03-22 20:48:28 +0000
commitba333729c3bf2a269ed2b2315a17e4f7127ae94e (patch)
treef4db194ab66672480e2da9b2d75498c3c7af02fd /CHANGES.current
parentd98f7050a0f3320c8ad86e94ff383e8402999132 (diff)
downloadswig-ba333729c3bf2a269ed2b2315a17e4f7127ae94e.tar.gz
Update changes file for lua __getitem
Diffstat (limited to 'CHANGES.current')
-rw-r--r--CHANGES.current7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.current b/CHANGES.current
index 87df4b053..5e9f9a866 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -5,6 +5,13 @@ See the RELEASENOTES file for a summary of changes in each release.
Version 3.0.9 (in progress)
===========================
+2016-03-22: alexwarg
+ [Lua] #398 Fix lua __getitem + inheritance
+ The new handling of classes in Lua (not merging methods into the derived classes)
+ breaks for classes that provide a __getitem function. The __getitem function
+ prevents method calls to any method defined in a base class. This fix calls
+ __getitem only if the member is not found using recursive lookup.
+
2016-03-18: ptomulik
[Python] #563 Stop generating unnecessary _swigconstant helpers.