diff --git a/Dictionary.cls b/Dictionary.cls index 5e7f134..4dd4f96 100644 --- a/Dictionary.cls +++ b/Dictionary.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' Dictionary v1.3.0 +' Dictionary v1.4.0 ' (c) Tim Hall - https://github.com/timhall/VBA-Dictionary ' ' Drop-in replacement for Scripting.Dictionary on Mac diff --git a/readme.md b/readme.md index 254435d..ba1d515 100644 --- a/readme.md +++ b/readme.md @@ -14,7 +14,7 @@ Dict("A") = 123 Dict("A") ' -> = Dict.Item("A") = 123 Dict.Exists "A" ' -> True -Dict.Add "A", 456 +Dict.Add "A", 456 ' -> Throws 457: This key is already associated with an element of this collection ' Both Set and Let work @@ -47,6 +47,10 @@ Dict("C") ' -> Empty ### Release Notes +#### 1.4.0 + +- Fix indexing issues for `Keys` and `Items` + #### 1.3.0 - Improve handling of non-string keys (Number, Boolean, and Object) diff --git a/specs/VBA-Dictionary - Specs.xlsm b/specs/VBA-Dictionary - Specs.xlsm index 64fc331..6c84700 100644 Binary files a/specs/VBA-Dictionary - Specs.xlsm and b/specs/VBA-Dictionary - Specs.xlsm differ