chore(master): release 1.4.0 (#134)

:robot: I have created a release *beep* *boop*
---


## [1.4.0](https://togithub.com/google/uuid/compare/v1.3.1...v1.4.0) (2023-10-26)


### Features

* UUIDs slice type with Strings() convenience method ([#133](https://togithub.com/google/uuid/issues/133)) ([cd5fbbd](https://togithub.com/google/uuid/commit/cd5fbbdd02f3e3467ac18940e07e062be1f864b4))

### Fixes

* Clarify that Parse's job is to parse but not necessarily validate strings. (Documents current behavior)

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
1 file changed
tree: 5c05b7240eb99c0f069b47ddbc7d0eefbf43cf80
  1. .github/
  2. CHANGELOG.md
  3. CONTRIBUTING.md
  4. CONTRIBUTORS
  5. dce.go
  6. doc.go
  7. go.mod
  8. hash.go
  9. json_test.go
  10. LICENSE
  11. marshal.go
  12. node.go
  13. node_js.go
  14. node_net.go
  15. null.go
  16. null_test.go
  17. README.md
  18. seq_test.go
  19. sql.go
  20. sql_test.go
  21. time.go
  22. util.go
  23. uuid.go
  24. uuid_test.go
  25. version1.go
  26. version4.go
README.md

uuid

The uuid package generates and inspects UUIDs based on RFC 4122 and DCE 1.1: Authentication and Security Services.

This package is based on the github.com/pborman/uuid package (previously named code.google.com/p/go-uuid). It differs from these earlier packages in that a UUID is a 16 byte array rather than a byte slice. One loss due to this change is the ability to represent an invalid UUID (vs a NIL UUID).

Install
go get github.com/google/uuid
Documentation

Go Reference

Full go doc style documentation for the package can be viewed online without installing this package by using the GoDoc site here: http://pkg.go.dev/github.com/google/uuid