Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.

Commit 6435347

Browse files
authored
Update version for release 3.0 #161 (#162)
1 parent 64090bd commit 6435347

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

Scripts/CustomTools/tools/RESTler/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"container" : "{PrivateRegistryRestler}/restapifuzztesting/restler-agent:v2.latest",
2+
"container" : "{PrivateRegistryRestler}/restapifuzztesting/restler-agent:v3.latest",
33
"shell" : "/bin/sh",
44
"run" : {
55
"shellArguments" : ["-c",

ado/variables/version-variables.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
variables:
22
- name: version.major
3-
value: 2
4-
- name: version.minor
53
value: 3
4+
- name: version.minor
5+
value: 0
66
- name: version.revision
77
value: 0
88
- name: imageTag
9-
value: 'v2.3.0'
9+
value: 'v3.0.0'
1010
- name: imageTagLatest
11-
value: 'v2.latest'
11+
value: 'v3.latest'
1212
- name: devRevision
1313
value: 0
1414
- name: imageTagWithBuildDate

cli/raft-tools/tools/RESTler/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"container" : "mcr.microsoft.com/restapifuzztesting/restler-agent:v2.latest",
2+
"container" : "mcr.microsoft.com/restapifuzztesting/restler-agent:v3.latest",
33
"shell" : "/bin/sh",
44
"run" : {
55
"shellArguments" : ["-c",

cli/raft_sdk/raft_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def __init__(self, context):
207207
self.resource_group = f"{self.deployment}-raft"
208208
self.app_insights = f"{self.deployment}-raft-ai"
209209
self.asp = f"{self.deployment}-raft-asp"
210-
self.container_tag = "v2.latest"
210+
self.container_tag = "v3.latest"
211211
self.queues = {
212212
'job_events': "raft-jobevents",
213213
'create_queue': "raft-jobcreate",

docs/raft-updates.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ The image tags produced for the containers will follow this pattern.
2222
- v1.latest Points to the latest version of v1
2323
- v2.0.0 Release not-compatible with v1.*
2424
- v2.latest Points to the latest version of v2
25+
- v3.0.0 Release not-compatible with v2.*
26+
- v3.latest Points to the latest version of v3
2527

2628
Releases will be created on the github project whenever a new CLI is needed and
2729
when a new image is release. For the releases that only include image updates,

src/Agent/RESTlerAgent/RESTlerDriver.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ open System
77
open Microsoft.FSharpLu
88

99
module RESTler =
10-
let version = "7.2.0"
10+
let version = "7.3.0"
1111

1212
module private RESTlerInternal =
1313
let inline (++) (path1: string) (path2 : string) = IO.Path.Join(path1, path2)

0 commit comments

Comments
 (0)