(patch) Update readme, force build for prior merge. (#4)
All checks were successful
/ Build and Release Library (push) Successful in 1m51s

Reviewed-on: #4
This commit is contained in:
Pat Garrity 2024-06-24 02:44:52 +00:00
parent 40fe036ce4
commit 8e01e9d6c8
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,5 @@
// See: https://github.com/scalameta/scalafmt/tags for the latest tags.
version = 3.8.1
version = 3.8.2
runner.dialect = scala3
maxColumn = 80

View file

@ -7,14 +7,18 @@ Test data generation library for Scala 3. `gs-datagen` provides _composable_
generator definitions that can be reused across tests.
- [Usage](#usage)
- [Dependency](#dependency)
- [Imports](#imports)
- [Examples](#examples)
- [Example: Generate a Random User](#example-generate-a-random-user)
- [Example: Require Input](#example-require-input)
- [Supported Generators](#supported-generators)
- [Donate](#donate)
## Usage
### Dependency
```
object Gs {
val Datagen: ModuleID =
@ -28,7 +32,7 @@ The standard way to use `gs-datagen` is to import the entire package, which
pulls in `Gen[A]`, `Generated[A]` and `Datagen[A, -I]`:
```scala
import gs.datagen.v0.*
import gs.datagen.v0._
```
## Examples