Skip to content

Releases: go-playground/pkg

Release 5.17.0

09 May 00:45
9fe94b7

Choose a tag to compare

v5.17.0

Helper Functions & building Blocks (#30)

Release 5.16.0

16 Apr 16:04
615d6ba

Choose a tag to compare

v5.16.0

Add sliceext.Reverse (#29)

Release 5.15.2

07 Mar 04:15
bad8e4a

Choose a tag to compare

v5.15.2

remove unessesary second type param on Mutex2 (#28)

Release 5.15.1

07 Mar 03:40
940518a

Choose a tag to compare

v5.15.1

make it safer (#27)

Release 5.15.0

06 Mar 06:40
1738f84

Choose a tag to compare

v5.15.0

add corrected Mutexes in sync directory (#26)

release 5.14.0

25 Feb 18:51
1309bd0

Choose a tag to compare

See CHANGELOG going forward for details.

Release 5.13.0

19 Feb 23:46
34ba206

Choose a tag to compare

What's new?

Added new methods to Doubly Linked List: InsertBefore, InsertAfter, InsertAtFront, InsertAtBack.

This allows for the detaching and insertion of existing nodes which helps prevent creating new allocation when not needed.

Release 5.12.3

18 Feb 18:12
ca069ea

Choose a tag to compare

What was fixed?

Corrected documentation on some Doubly Linked List methods.

Release 5.12.2

18 Feb 17:38
14d007e

Choose a tag to compare

What was fixed?

Fixed and bug with the Remove function of the Doubly Linked List when the node being removed was the sole entry.

Release 5.12.1

18 Feb 06:05
a58967f

Choose a tag to compare

What was fixed?

Fixing Doubly Linked List Node value access.

The initial implementation required an extra copy to get the value, fixing to allow direct access.
To change the value also caused the value V to have to be a pointer, this corrects that need.