Skip to content

Commit

Permalink
46.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PureCloud Jenkins committed Jun 18, 2021
1 parent 7b5c40f commit 13e2603
Show file tree
Hide file tree
Showing 298 changed files with 11,275 additions and 3,394 deletions.
16 changes: 14 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
PACKAGE_NAME = platformclientv2

build:
go build ./${PACKAGE_NAME}
.PHONY: all test

all: test build ## Build and run tests

build: windows linux darwin ## Build binaries

windows:
env GOOS=windows GOARCH=amd64 go build -v ./${PACKAGE_NAME}

linux:
env GOOS=linux GOARCH=amd64 go build -v ./${PACKAGE_NAME}

darwin:
env GOOS=darwin GOARCH=amd64 go build -v ./${PACKAGE_NAME}

test:
go test ./${PACKAGE_NAME} -v -failfast
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Platform API Client SDK - Go

A Go package to interface with the Genesys Cloud Platform API. View the documentation on the [pkg.go.dev](https://pkg.go.dev/github.com/MyPureCloud/platform-client-sdk-go). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-go).

Latest version: 45.0.0 [![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-go.svg)](https://github.com/MyPureCloud/platform-client-sdk-go)
Latest version: 46.0.0 [![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-go.svg)](https://github.com/MyPureCloud/platform-client-sdk-go)
[![Release Notes Badge](https://developer-content.genesys.cloud/images/sdk-release-notes.png)](https://github.com/MyPureCloud/platform-client-sdk-go/blob/master/releaseNotes.md)

## Golang Version Dependency
Expand All @@ -18,7 +18,7 @@ Some macOS users encounter the error "argument list too long" when building or i
Retrieve the package from https://github.com/MyPureCloud/platform-client-sdk-go using `go get`:

```go
go get github.com/mypurecloud/platform-client-sdk-go/v45/platformclientv2
go get github.com/mypurecloud/platform-client-sdk-go/v46/platformclientv2
```

## Using the SDK
Expand All @@ -27,7 +27,7 @@ go get github.com/mypurecloud/platform-client-sdk-go/v45/platformclientv2

```go
import (
"github.com/mypurecloud/platform-client-sdk-go/v45/platformclientv2"
"github.com/mypurecloud/platform-client-sdk-go/v46/platformclientv2"
)
```

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Platform API Client SDK - Go

A Go package to interface with the Genesys Cloud Platform API. View the documentation on the [pkg.go.dev](https://pkg.go.dev/github.com/MyPureCloud/platform-client-sdk-go). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-go).

Latest version: 45.0.0 [![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-go.svg)](https://github.com/MyPureCloud/platform-client-sdk-go)
Latest version: 46.0.0 [![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-go.svg)](https://github.com/MyPureCloud/platform-client-sdk-go)
[![Release Notes Badge](https://developer-content.genesys.cloud/images/sdk-release-notes.png)](https://github.com/MyPureCloud/platform-client-sdk-go/blob/master/releaseNotes.md)

## Golang Version Dependency
Expand All @@ -18,7 +18,7 @@ Some macOS users encounter the error "argument list too long" when building or i
Retrieve the package from https://github.com/MyPureCloud/platform-client-sdk-go using `go get`:

```go
go get github.com/mypurecloud/platform-client-sdk-go/v45/platformclientv2
go get github.com/mypurecloud/platform-client-sdk-go/v46/platformclientv2
```

## Using the SDK
Expand All @@ -27,7 +27,7 @@ go get github.com/mypurecloud/platform-client-sdk-go/v45/platformclientv2

```go
import (
"github.com/mypurecloud/platform-client-sdk-go/v45/platformclientv2"
"github.com/mypurecloud/platform-client-sdk-go/v46/platformclientv2"
)
```

Expand Down
Loading

0 comments on commit 13e2603

Please sign in to comment.