Skip to content

v0.11.1

Compare
Choose a tag to compare
@ararslan ararslan released this 24 Jan 18:40
· 403 commits to master since this release
17fd5c1
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