Skip to content

Commit 66b3203

Browse files
hopeman15Kyle Roe
andauthored
[Prepare] Release Version 1.5.0 (#387)
* update readme * update documentation * updated changelog --------- Co-authored-by: Kyle Roe <[hopeman15@users.noreply.github.com]>
1 parent 90e0202 commit 66b3203

8 files changed

Lines changed: 27 additions & 18 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Model Forge is a library to automate model generation for automated testing:
2525

2626
```kotlin
2727
dependencies {
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
3838
dependencies {
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

5757
dependencies {
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
7272
dependencies {
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

website/docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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

website/docs/getting-started/gradle-dependency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add the dependency to your `build.gradle` file to get started:
88

99
```kotlin
1010
dependencies {
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

2424
dependencies {
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
```

website/docs/introduction.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

website/docs/supported-types/ubyte.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 15
33
---
44

5-
# UByte (Snapshot)
5+
# UByte
66

77
The `UByte` provider generates a random UByte value between two unsigned integers.
88

website/docs/supported-types/uint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 16
33
---
44

5-
# UInt (Snapshot)
5+
# UInt
66

77
The `UInt` provider generates a random UInt value between two unsigned integers.
88

website/docs/supported-types/ulong.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 17
33
---
44

5-
# ULong (Snapshot)
5+
# ULong
66

77
The `ULong` provider generates a random ULong value between two unsigned longs.
88

website/docs/supported-types/ushort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 18
33
---
44

5-
# UShort (Snapshot)
5+
# UShort
66

77
The `UShort` provider generates a random UShort value between two unsigned integers.
88

0 commit comments

Comments
 (0)