Skip to content

Commit 458bda5

Browse files
committed
v0.2.0
1 parent c05a405 commit 458bda5

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Working for JDK 8 and above.
1414
```
1515
String openApi = ...
1616
String overlay = ...
17-
TransformationResult tr = Processor.applyOverlay(openApi, overlay);
17+
TransformationResult tr = OverlayJVM.applyOverlay(openApi, overlay);
1818
tr.transformedSchema; // the result of the transformation
1919
tr.warnings; // list of warning messages, if any
2020
```
@@ -25,7 +25,7 @@ tr.warnings; // list of warning messages, if any
2525
<dependency>
2626
<groupId>com.webfuzzing</groupId>
2727
<artifactId>overlay-jvm</artifactId>
28-
<version>0.1.1</version>
28+
<version>0.2.0</version>
2929
</dependency>
3030
```
3131

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.webfuzzing</groupId>
66
<artifactId>overlay-jvm</artifactId>
77

8-
<version>0.1.2-SNAPSHOT</version>
8+
<version>0.2.0</version>
99

1010
<inceptionYear>2026</inceptionYear>
1111
<name>overlay-jvm</name>

release_notes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
Under development in `master` branch.
44

5-
- Renamed main entry point of library from `Processor` to `OverlayJVM`.
5+
# 0.2.0
66

7+
- Renamed main entry point of library from `Processor` to `OverlayJVM`.
8+
- Fixed bug in the handling of array updates
79

810
# 0.1.1
911

0 commit comments

Comments
 (0)