Skip to content

Commit 434815b

Browse files
authored
Update RESTler version to 9.2.1 (#770)
Changes in this version: - support path parameters embedded in - support equality constraint for uuid4_suffixes in the same request payload - allow specifying a custom User-Agent - minor improvements / bug fixes
1 parent c69a8ba commit 434815b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci_build_pipelines/variables/version-variables.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variables:
44
- name: version.minor
55
value: 2
66
- name: devRevision
7-
value: 0
7+
value: 1
88
- name: buildPlatform
99
value: 'Any CPU'
1010
- name: buildConfiguration

src/driver/Program.fs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ open Microsoft.FSharpLu.Diagnostics.Process
1414
open Restler.Telemetry
1515

1616
[<Literal>]
17-
let CurrentVersion = "9.2.0"
17+
let CurrentVersion = "9.2.1"
1818
let EngineErrorCode = -2
1919

2020
let exitRestler status =
@@ -524,7 +524,7 @@ module Config =
524524
// in the list
525525
let configParameters = parseGenerateConfigParameters
526526
{ specFilesOrDirs = []
527-
outputDir = None
527+
outputDir = None
528528
relativePath = None }
529529
generateConfigParameters
530530
let configDirPath = configParameters.outputDir.Value
@@ -933,7 +933,7 @@ let main argv =
933933
let! result = Compile.invokeCompiler taskWorkingDirectory compilerConfigPath compilerOutputDirPath
934934
let grammarFileStatistics =
935935
match result with
936-
| 0 ->
936+
| 0 ->
937937
Fuzz.getGrammarFileStatistics (compilerOutputDirPath ++
938938
Restler.Workflow.Constants.DefaultRestlerGrammarFileName)
939939
| _ -> []

0 commit comments

Comments
 (0)