Skip to content

Commit

Permalink
Release 1.1.6 version
Browse files Browse the repository at this point in the history
  • Loading branch information
seongahjo committed Dec 19, 2024
1 parent d785ae2 commit 0b7f6a7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ Each primitive type property is generated by [Jqwik](https://github.com/jlink/jq
#### Java

```groovy
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter:1.1.5")
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter:1.1.6")
```

#### Kotlin

```groovy
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:1.1.5")
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:1.1.6")
```

### Maven
Expand All @@ -49,7 +49,7 @@ testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:1.
<dependency>
<groupId>com.navercorp.fixturemonkey</groupId>
<artifactId>fixture-monkey-starter</artifactId>
<version>1.1.5</version>
<version>1.1.6</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -60,7 +60,7 @@ testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:1.
<dependency>
<groupId>com.navercorp.fixturemonkey</groupId>
<artifactId>fixture-monkey-starter-kotlin</artifactId>
<version>1.1.5</version>
<version>1.1.6</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "com.navercorp.fixturemonkey"
version = "1.1.6-SNAPSHOT"
version = "1.1.6"
}

subprojects {
Expand Down
4 changes: 3 additions & 1 deletion docs/content/v1.1.x-kor/release-notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ sectionStart
## v.1.1.6
Deprecate `Randoms.create(String)`, use `Randoms.setSeed(long)` instead.

Fix an instance generated by `ConstructorPropertiesArbitraryIntrospector` that was not validated by validation annotations.
Fix an instance generated by `ConstructorPropertiesArbitraryIntrospector` that was not validated by validation annotations.

Fix using `KotlinArbitraryBuilder` when generating an `Arb` in kotest module.

sectionEnd

Expand Down
2 changes: 2 additions & 0 deletions docs/content/v1.1.x/release-notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Deprecate `Randoms.create(String)`, use `Randoms.setSeed(long)` instead.

Fix an instance generated by `ConstructorPropertiesArbitraryIntrospector` that was not validated by validation annotations.

Fix using `KotlinArbitraryBuilder` when generating an `Arb` in kotest module.

sectionEnd

sectionStart
Expand Down

0 comments on commit 0b7f6a7

Please sign in to comment.