Skip to content

Commit

Permalink
Update go & ruby for 3.1 (#7414)
Browse files Browse the repository at this point in the history
  • Loading branch information
areddish authored and raych1 committed Oct 10, 2019
1 parent c82f1bf commit 3b99d11
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ batch:
- tag: release_2_1
- tag: release_2_2
- tag: release_3_0
- tag: release_3_1
```
### Tag: release_1_0 and go
Expand Down Expand Up @@ -54,3 +55,12 @@ Please also specify `--go-sdk-folder=<path to the root directory of your azure-s
``` yaml $(tag) == 'release_3_0' && $(go)
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.0/customvision/$(namespace)
```

### Tag: release_3_1 and go

These settings apply only when `--tag=release_3_1 --go` is specified on the command line.
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

``` yaml $(tag) == 'release_3_1' && $(go)
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.1/customvision/$(namespace)
```
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ azure-arm: true
batch:
- tag: release_1_0
- tag: release_3_0
- tag: release_3_1
```
### Tag: release_1_0 and ruby
Expand All @@ -37,3 +38,14 @@ namespace: "Azure::CognitiveServices::CustomVision::Training::V3_0"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_customvisiontraining/lib
title: "TrainingClient"
```

### Tag: release_3_1 and ruby

These settings apply only when `--tag=release_3_1 --ruby` is specified on the command line.
Please also specify `--ruby-sdks-folder=<path to the root directory of your azure-sdk-for-ruby clone>`.

``` yaml $(tag) == 'release_3_1' && $(ruby)
namespace: "Azure::CognitiveServices::CustomVision::Training::V3_1"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_customvisiontraining/lib
title: "TrainingClient"
```

0 comments on commit 3b99d11

Please sign in to comment.