Skip to content

Releases: bdlm/cast

v2.0.3

22 Feb 18:35
9af56d8
Compare
Choose a tag to compare
  • GitHub action definition for builds and tests
  • Related bug fixes and cleanup

v2.0.2 Release

30 Dec 19:58
984de14
Compare
Choose a tag to compare
  • Added test coverage
  • Related bug fixes and cleanup

v2.0.1 Release

28 Dec 22:19
f5ddc99
Compare
Choose a tag to compare
  • Additional examples
  • Improved slice support
  • Various bugfixes
  • Added tests

v2.0.0 Release

23 Dec 19:36
7749599
Compare
Choose a tag to compare

Public API syntax updated to use generics syntax.

syntax example:

intVal := cast.To[int]("8.31")      // 8 (int)
intVal := cast.To[int]("Hi!")       // 0 (int)
intVal, err := cast.ToE[int]("Hi!") // 0, unable to cast "Hi!" of type string to int (int, error)

v2.0.0-rc5

28 Sep 17:28
Compare
Choose a tag to compare
v2.0.0-rc5 Pre-release
Pre-release
bugfixes

v2.0.0-rc4

27 Sep 22:58
Compare
Choose a tag to compare
v2.0.0-rc4 Pre-release
Pre-release
bugs

v2.0.0-rc3

27 Sep 22:39
Compare
Choose a tag to compare
v2.0.0-rc3 Pre-release
Pre-release
bugs

v2.0.0-rc2

21 Sep 23:14
Compare
Choose a tag to compare
v2.0.0-rc2 Pre-release
Pre-release
bugs

Release Candidate 1

05 Aug 16:25
Compare
Choose a tag to compare
Release Candidate 1 Pre-release
Pre-release
v2.0.0-rc1

words

v1.0.2

26 Jun 00:47
Compare
Choose a tag to compare

Added

  • ToUint64Slice
  • ToUint64SliceE