v0.11.1
Allow indexing into ConicObj with any Integer (#273) We're using the value of `objectid` to store values in `ConicObj`, but `objectid` returns `UInt32` on 32-bit systems. Currently `ConicObj` only accepts indexing operations with `UInt64` keys, which causes a method error on 32-bit systems. This was an oversight when introducing `ConicObj` as its own type. Fixes #272