Skip to content

Commit

Permalink
Update RESTler version to 9.2.1 (#770)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
marina-p committed Jun 1, 2023
1 parent c69a8ba commit 434815b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci_build_pipelines/variables/version-variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variables:
- name: version.minor
value: 2
- name: devRevision
value: 0
value: 1
- name: buildPlatform
value: 'Any CPU'
- name: buildConfiguration
Expand Down
6 changes: 3 additions & 3 deletions src/driver/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ open Microsoft.FSharpLu.Diagnostics.Process
open Restler.Telemetry

[<Literal>]
let CurrentVersion = "9.2.0"
let CurrentVersion = "9.2.1"
let EngineErrorCode = -2

let exitRestler status =
Expand Down Expand Up @@ -524,7 +524,7 @@ module Config =
// in the list
let configParameters = parseGenerateConfigParameters
{ specFilesOrDirs = []
outputDir = None
outputDir = None
relativePath = None }
generateConfigParameters
let configDirPath = configParameters.outputDir.Value
Expand Down Expand Up @@ -933,7 +933,7 @@ let main argv =
let! result = Compile.invokeCompiler taskWorkingDirectory compilerConfigPath compilerOutputDirPath
let grammarFileStatistics =
match result with
| 0 ->
| 0 ->
Fuzz.getGrammarFileStatistics (compilerOutputDirPath ++
Restler.Workflow.Constants.DefaultRestlerGrammarFileName)
| _ -> []
Expand Down

0 comments on commit 434815b

Please sign in to comment.