Skip to content

Commit 4e5ef93

Browse files
committed
Release 0.5.1
- fix getter envInPostmanEnvJSONFormat Signed-off-by: Gopal S Akshintala <[email protected]>
1 parent c6746dd commit 4e5ef93

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif::[]
1818
:pmtemplates: src/integrationTest/resources/pm-templates
1919
:imagesdir: docs/images
2020
:prewrap!:
21-
:revoman-version: 0.5.0
21+
:revoman-version: 0.5.1
2222

2323
'''
2424

@@ -487,7 +487,7 @@ CAUTION: The recommendation is not to add too much code in <<Pre-req and Post-re
487487
==== Read Mutable Environment as Postman Environment JSON format
488488

489489
You may want to troubleshoot manually with Postman using the Mutable environment built during the ReṼoman execution.
490-
`rundown.getEnvInPostmanEnvJSONFormat()` converts the mutable environment into a Postman JSON format,
490+
`rundown.envInPostmanEnvJSONFormat()` converts the mutable environment into a Postman JSON format,
491491
so you can copy and import that conveniently into Postman.
492492

493493
==== `pmEnvSnapshot` in each StepReport

buildSrc/src/main/kotlin/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
* ************************************************************************************************
77
*/
88
const val GROUP_ID = "com.salesforce.revoman"
9-
const val VERSION = "0.5.0"
9+
const val VERSION = "0.5.1"
1010
const val ARTIFACT_ID = "revoman"
1111
const val STAGING_PROFILE_ID = "1ea0a23e61ba7d"

docs/images/step-execution.png

5.01 KB
Loading

src/main/kotlin/com/salesforce/revoman/output/Rundown.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ data class Rundown(
2222
) {
2323
@get:JvmName("immutableEnv") val immutableEnv: Map<String, Any?> by lazy { mutableEnv.toMap() }
2424

25-
@get:JvmName("postmanEnvJson")
25+
@get:JvmName("envInPostmanEnvJSONFormat")
2626
val envInPostmanEnvJSONFormat: String by lazy {
2727
moshiReVoman.prettify(moshiReVoman.asFormatString(fromMap(mutableEnv, moshiReVoman)))
2828
}

0 commit comments

Comments
 (0)