Releases: kevinchannon/wite
Releases · kevinchannon/wite
v1.0.0
v0.15.1
Trying to create NuGet package as part of the release
Add iterator interface for Identifiable Item Collection
v0.15.0 v0.15.0 - update nuspec file with v0.15.0 details
v0.14.1
update nuspec file for v0.14.1
Static vector doesn't default construct all the items on initialisation
collections::static_vector now holds its items as std::optional values. This means that the items do not get default-constructed when the vector is instanciated, which is generally preferable. There is a side-effect that static_vector::data() would now not do the expected thing, so it's been removed. If you know what you're doing and you want a pointer to the array of optionals, then you can now use the static_vector::ptr() method instead.
v0.13.0
Align the interface of wite::result
more closely with that of C++23's std::expected
type
Wite UUID release
- Added UUID type
- Added ID and Index types
- Added Identifiable Item Collection
v0.11.0
Add some acknowledgements in README and align Github and NuGet versio…
v0.9.0
Added `scope_exit`, `scope_success` and `scope_fail`
v0.8.0: * static_lookup
- Added
static_lookup
- Added
make_vector
- Added some IO functions to read/write buffers from/to files
- Various other little utilities and concepts