Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Jan 21, 2016
1 parent 0213d98 commit 90658ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dictionary.cls
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion readme.md
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
Binary file modified specs/VBA-Dictionary - Specs.xlsm
Binary file not shown.

0 comments on commit 90658ca

Please sign in to comment.