From b31d32e4663d56772871b06ff1344fc3ab89eb5a Mon Sep 17 00:00:00 2001 From: adragusin Date: Mon, 9 Mar 2020 11:15:06 +0200 Subject: [PATCH] Updated go version to 1.14 --- .travis.yml | 2 +- data/ansible/calls/asterisk/main.yaml | 2 +- data/ansible/calls/freeswitch/main.yaml | 2 +- data/ansible/calls/kamailio/main.yaml | 2 +- data/ansible/deb_packages/main.yaml | 2 +- data/ansible/integration_tests/main.yaml | 2 +- data/ansible/rpm_packages/main.yaml | 2 +- docs/installation.rst | 4 ++-- go.mod | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index cb79544b0..099f91188 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: go go: - - 1.13 + - 1.14 script: go test -v ./... diff --git a/data/ansible/calls/asterisk/main.yaml b/data/ansible/calls/asterisk/main.yaml index 624863221..71d79ceff 100644 --- a/data/ansible/calls/asterisk/main.yaml +++ b/data/ansible/calls/asterisk/main.yaml @@ -5,7 +5,7 @@ ##################### Golang Vars ############################# ############################################################### # Go language SDK version number - golang_version: '1.13' + golang_version: '1.14' go_version_target: "go version go{{ golang_version }} linux/amd64" # Mirror to download the Go language SDK redistributable package from golang_mirror: 'https://storage.googleapis.com/golang' diff --git a/data/ansible/calls/freeswitch/main.yaml b/data/ansible/calls/freeswitch/main.yaml index 147ea1083..0816f3c73 100644 --- a/data/ansible/calls/freeswitch/main.yaml +++ b/data/ansible/calls/freeswitch/main.yaml @@ -5,7 +5,7 @@ ##################### Golang Vars ############################# ############################################################### # Go language SDK version number - golang_version: '1.13' + golang_version: '1.14' go_version_target: "go version go{{ golang_version }} linux/amd64" # Mirror to download the Go language SDK redistributable package from golang_mirror: 'https://storage.googleapis.com/golang' diff --git a/data/ansible/calls/kamailio/main.yaml b/data/ansible/calls/kamailio/main.yaml index c23b24146..6a312d448 100644 --- a/data/ansible/calls/kamailio/main.yaml +++ b/data/ansible/calls/kamailio/main.yaml @@ -5,7 +5,7 @@ ##################### Golang Vars ############################# ############################################################### # Go language SDK version number - golang_version: '1.13' + golang_version: '1.14' go_version_target: "go version go{{ golang_version }} linux/amd64" # Mirror to download the Go language SDK redistributable package from golang_mirror: 'https://storage.googleapis.com/golang' diff --git a/data/ansible/deb_packages/main.yaml b/data/ansible/deb_packages/main.yaml index 0e04f08ba..448785b23 100644 --- a/data/ansible/deb_packages/main.yaml +++ b/data/ansible/deb_packages/main.yaml @@ -29,7 +29,7 @@ ##################### Golang Vars ############################# ############################################################### # Go language SDK version number - golang_version: '1.13' + golang_version: '1.14' go_version_target: "go version go{{ golang_version }} linux/amd64" # Mirror to download the Go language SDK redistributable package from golang_mirror: 'https://storage.googleapis.com/golang' diff --git a/data/ansible/integration_tests/main.yaml b/data/ansible/integration_tests/main.yaml index f381bf9a2..0afabae2a 100644 --- a/data/ansible/integration_tests/main.yaml +++ b/data/ansible/integration_tests/main.yaml @@ -5,7 +5,7 @@ ##################### Golang Vars ############################# ############################################################### # Go language SDK version number - golang_version: '1.13' + golang_version: '1.14' go_version_target: "go version go{{ golang_version }} linux/amd64" # Mirror to download the Go language SDK redistributable package from golang_mirror: 'https://storage.googleapis.com/golang' diff --git a/data/ansible/rpm_packages/main.yaml b/data/ansible/rpm_packages/main.yaml index e1e96cc46..fcbe9ee1f 100644 --- a/data/ansible/rpm_packages/main.yaml +++ b/data/ansible/rpm_packages/main.yaml @@ -29,7 +29,7 @@ ##################### Golang Vars ############################# ############################################################### # Go language SDK version number - golang_version: '1.13' + golang_version: '1.14' go_version_target: "go version go{{ golang_version }} linux/amd64" # Mirror to download the Go language SDK redistributable package from golang_mirror: 'https://storage.googleapis.com/golang' diff --git a/docs/installation.rst b/docs/installation.rst index 93db66e0d..d57663e93 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -108,7 +108,7 @@ As a side note on http://pkg.cgrates.org one can find an entire archive of CGRat 3.2. Using source ~~~~~~~~~~~~~~~~~ -For developing CGRateS and switching between its versions, we are using the **new go mods feature** introduced in go 1.13. +For developing CGRateS and switching between its versions, we are using the **new go mods feature** introduced in go 1.14. 3.2.1 Install GO Lang @@ -116,7 +116,7 @@ For developing CGRateS and switching between its versions, we are using the **ne First we have to setup the GO Lang to our OS. Feel free to download the latest GO binary release from https://golang.org/dl/ -In this Tutorial we are going to install Go 1.13 +In this Tutorial we are going to install Go 1.14 :: diff --git a/go.mod b/go.mod index 9a5298e39..e86d6cc63 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cgrates/cgrates -go 1.13 +go 1.14 // replace github.com/cgrates/radigo => /home/dan/go/src/github.com/cgrates/radigo // replace github.com/cgrates/rpcclient => ../rpcclient