Skip to content

Releases: kevinchannon/wite

v1.0.0

17 Jan 19:36
Compare
Choose a tag to compare
Update README.md

v0.15.1

16 Jan 20:15
Compare
Choose a tag to compare
Trying to create NuGet package as part of the release

Add iterator interface for Identifiable Item Collection

13 Jan 07:20
Compare
Choose a tag to compare
v0.15.0

v0.15.0 - update nuspec file with v0.15.0 details

v0.14.1

08 Jan 20:27
Compare
Choose a tag to compare
update nuspec file for v0.14.1

Static vector doesn't default construct all the items on initialisation

08 Jan 20:06
Compare
Choose a tag to compare

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

31 Dec 08:49
Compare
Choose a tag to compare

Align the interface of wite::result more closely with that of C++23's std::expected type

Wite UUID release

29 Dec 08:10
Compare
Choose a tag to compare
  • Added UUID type
  • Added ID and Index types
  • Added Identifiable Item Collection

v0.11.0

22 Nov 07:04
Compare
Choose a tag to compare
Add some acknowledgements in README and align Github and NuGet versio…

v0.9.0

20 Nov 09:14
Compare
Choose a tag to compare
Added `scope_exit`, `scope_success` and `scope_fail`

v0.8.0: * static_lookup

19 Nov 08:45
Compare
Choose a tag to compare
  • Added static_lookup
  • Added make_vector
  • Added some IO functions to read/write buffers from/to files
  • Various other little utilities and concepts