Skip to content

Commit

Permalink
[Prepare] Release Version 1.5.0 (#387)
Browse files Browse the repository at this point in the history
* update readme

* update documentation

* updated changelog

---------

Co-authored-by: Kyle Roe <[hopeman15@users.noreply.github.com]>
  • Loading branch information
hopeman15 and Kyle Roe authored Oct 31, 2024
1 parent 90e0202 commit 66b3203
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 18 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Model Forge is a library to automate model generation for automated testing:

```kotlin
dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.4.0")
testImplementation("io.github.hellocuriosity:model-forge:1.5.0")
}
```

Expand All @@ -36,7 +36,7 @@ dependencies {

```groovy
dependencies {
testImplementation 'io.github.hellocuriosity:model-forge:1.4.0'
testImplementation 'io.github.hellocuriosity:model-forge:1.5.0'
}
```

Expand All @@ -55,7 +55,7 @@ repositories {
}

dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.4.0.xx-SNAPSHOT")
testImplementation("io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT")
}
```

Expand All @@ -70,7 +70,7 @@ repositories {
}
dependencies {
testImplementation 'io.github.hellocuriosity:model-forge:1.4.0.xx-SNAPSHOT'
testImplementation 'io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT'
}
```

Expand Down Expand Up @@ -180,10 +180,10 @@ Model Forge currently supports the auto generation for the following types:
* Long
* Short
* String
* UByte (snapshot)
* UInt (snapshot)
* ULong (snapshot)
* UShort (snapshot)
* UByte
* UInt
* ULong
* UShort
* UUID

### Collections
Expand Down
9 changes: 9 additions & 0 deletions website/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ sidebar_position: 4

# Changelog

## [1.5.0] - October 31st 2024

* Auto generation for additional types:
* UByte
* UInt
* ULong
* UShort
* Dependency updates

## [1.4.0] - February 19th 2024

* Support Kotlin version 1.9.22
Expand Down
4 changes: 2 additions & 2 deletions website/docs/getting-started/gradle-dependency.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add the dependency to your `build.gradle` file to get started:

```kotlin
dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.4.0")
testImplementation("io.github.hellocuriosity:model-forge:1.5.0")
}
```

Expand All @@ -22,6 +22,6 @@ repositories {
}

dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.4.0.xx-SNAPSHOT")
testImplementation("io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT")
}
```
8 changes: 4 additions & 4 deletions website/docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ supports the auto generation for the following types:
* Long
* Short
* String
* UByte (snapshot)
* UInt (snapshot)
* ULong (snapshot)
* UShort (snapshot)
* UByte
* UInt
* ULong
* UShort
* UUID

#### Collections
Expand Down
2 changes: 1 addition & 1 deletion website/docs/supported-types/ubyte.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sidebar_position: 15
---

# UByte (Snapshot)
# UByte

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

Expand Down
2 changes: 1 addition & 1 deletion website/docs/supported-types/uint.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sidebar_position: 16
---

# UInt (Snapshot)
# UInt

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

Expand Down
2 changes: 1 addition & 1 deletion website/docs/supported-types/ulong.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sidebar_position: 17
---

# ULong (Snapshot)
# ULong

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

Expand Down
2 changes: 1 addition & 1 deletion website/docs/supported-types/ushort.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sidebar_position: 18
---

# UShort (Snapshot)
# UShort

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

Expand Down

0 comments on commit 66b3203

Please sign in to comment.