File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Model Forge is a library to automate model generation for automated testing:
2525
2626``` kotlin
2727dependencies {
28- testImplementation(" io.github.hellocuriosity:model-forge:1.4 .0" )
28+ testImplementation(" io.github.hellocuriosity:model-forge:1.5 .0" )
2929}
3030```
3131
@@ -36,7 +36,7 @@ dependencies {
3636
3737``` groovy
3838dependencies {
39- testImplementation 'io.github.hellocuriosity:model-forge:1.4 .0'
39+ testImplementation 'io.github.hellocuriosity:model-forge:1.5 .0'
4040}
4141```
4242
@@ -55,7 +55,7 @@ repositories {
5555}
5656
5757dependencies {
58- testImplementation(" io.github.hellocuriosity:model-forge:1.4 .0.xx-SNAPSHOT" )
58+ testImplementation(" io.github.hellocuriosity:model-forge:1.5 .0.xx-SNAPSHOT" )
5959}
6060```
6161
@@ -70,7 +70,7 @@ repositories {
7070}
7171
7272dependencies {
73- testImplementation 'io.github.hellocuriosity:model-forge:1.4 .0.xx-SNAPSHOT'
73+ testImplementation 'io.github.hellocuriosity:model-forge:1.5 .0.xx-SNAPSHOT'
7474}
7575```
7676
@@ -180,10 +180,10 @@ Model Forge currently supports the auto generation for the following types:
180180* Long
181181* Short
182182* String
183- * UByte (snapshot)
184- * UInt (snapshot)
185- * ULong (snapshot)
186- * UShort (snapshot)
183+ * UByte
184+ * UInt
185+ * ULong
186+ * UShort
187187* UUID
188188
189189### Collections
Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ sidebar_position: 4
44
55# Changelog
66
7+ ## [ 1.5.0] - October 31st 2024
8+
9+ * Auto generation for additional types:
10+ * UByte
11+ * UInt
12+ * ULong
13+ * UShort
14+ * Dependency updates
15+
716## [ 1.4.0] - February 19th 2024
817
918* Support Kotlin version 1.9.22
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Add the dependency to your `build.gradle` file to get started:
88
99``` kotlin
1010dependencies {
11- testImplementation(" io.github.hellocuriosity:model-forge:1.4 .0" )
11+ testImplementation(" io.github.hellocuriosity:model-forge:1.5 .0" )
1212}
1313```
1414
@@ -22,6 +22,6 @@ repositories {
2222}
2323
2424dependencies {
25- testImplementation(" io.github.hellocuriosity:model-forge:1.4 .0.xx-SNAPSHOT" )
25+ testImplementation(" io.github.hellocuriosity:model-forge:1.5 .0.xx-SNAPSHOT" )
2626}
2727```
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ supports the auto generation for the following types:
2323* Long
2424* Short
2525* String
26- * UByte (snapshot)
27- * UInt (snapshot)
28- * ULong (snapshot)
29- * UShort (snapshot)
26+ * UByte
27+ * UInt
28+ * ULong
29+ * UShort
3030* UUID
3131
3232#### Collections
Original file line number Diff line number Diff line change 22sidebar_position : 15
33---
44
5- # UByte (Snapshot)
5+ # UByte
66
77The ` UByte ` provider generates a random UByte value between two unsigned integers.
88
Original file line number Diff line number Diff line change 22sidebar_position : 16
33---
44
5- # UInt (Snapshot)
5+ # UInt
66
77The ` UInt ` provider generates a random UInt value between two unsigned integers.
88
Original file line number Diff line number Diff line change 22sidebar_position : 17
33---
44
5- # ULong (Snapshot)
5+ # ULong
66
77The ` ULong ` provider generates a random ULong value between two unsigned longs.
88
Original file line number Diff line number Diff line change 22sidebar_position : 18
33---
44
5- # UShort (Snapshot)
5+ # UShort
66
77The ` UShort ` provider generates a random UShort value between two unsigned integers.
88
You can’t perform that action at this time.
0 commit comments