diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a433ff..7e0d840 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +# v0.12.0 +- Add `RequestError`, `GraphQLInternalError` and, `GraphQLError` to the client to better differentiate between different types of errors. + # v0.11.1 - Update "lightspark-crypto-go" to v0.2.0 to fix build on some linux versions. diff --git a/README.md b/README.md index 3f708fe..6fcd13b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Lightspark Go SDK - v0.11.1 +# Lightspark Go SDK - v0.12.0 The Lightspark Go SDK provides a convenient way to interact with the Lightspark services from applications written in the Go. -**_WARNING: This SDK is in version 0.11.1 (active development). It means that its APIs may not be fully stable. Please +**_WARNING: This SDK is in version 0.12.0 (active development). It means that its APIs may not be fully stable. Please expect that changes to the APIs may happen until we move to v1.0.0._** ## Documentation diff --git a/version.go b/version.go index d7768bf..3cd1679 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package lightspark -const VERSION = "0.11.1" +const VERSION = "0.12.0"