Skip to content

Commit

Permalink
Release 1.1.10 version
Browse files Browse the repository at this point in the history
  • Loading branch information
seongahjo committed Mar 7, 2025
1 parent 8bf295e commit 682dfef
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,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.9")
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter:1.1.10")
```

#### Kotlin

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

### Maven
Expand All @@ -53,7 +53,7 @@ testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:1.
<dependency>
<groupId>com.navercorp.fixturemonkey</groupId>
<artifactId>fixture-monkey-starter</artifactId>
<version>1.1.9</version>
<version>1.1.10</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -64,7 +64,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.9</version>
<version>1.1.10</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.10-SNAPSHOT"
version = "1.1.10"
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion docs/config/_default/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ rel = "sitemap"
target = "layouts"

[params]
version = "1.1.8"
version = "1.1.10"
4 changes: 2 additions & 2 deletions docs/config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = ""

## Documentation
docsVersion = "1.0.0"
fixtureMonkeyVersion = "1.1.9"
fixtureMonkeyVersion = "1.1.10"

## Open Graph
images = ["fixtureMonkey.png"]
Expand Down Expand Up @@ -115,4 +115,4 @@ lastMod = false
collapsibleSidebar = true

[[params.versions]]
version = "1.1.9"
version = "1.1.10"
18 changes: 18 additions & 0 deletions docs/content/v1.1.x-kor/release-notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ menu:
docs:
weight: 100
---
sectionStart
## v.1.1.10
Add support for deterministic testing with JUnit, the tests annotated by `@Seed` would be deterministic.

Fix the functional interface instance supports `equals`, `hashCode`, `toString`.

Fix instantiate API with Kotlin value class.

Add support generating Kotlin constant object.

Refactor simplifying numeric validation.

Refactor addressing Java expGetter record.

Refactor resolving expressions as programmatic primarily.

sectionEnd

sectionStart
## v.1.1.9
Fix `abstractExtends` in InterfacePlugin does not support interface, please use `interafaceImplements` instead.
Expand Down
18 changes: 18 additions & 0 deletions docs/content/v1.1.x/release-notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ menu:
docs:
weight: 100
---
sectionStart
## v.1.1.10
Add support for deterministic testing with JUnit, the tests annotated by `@Seed` would be deterministic.

Fix the functional interface instance supports `equals`, `hashCode`, `toString`.

Fix instantiate API with Kotlin value class.

Add support generating Kotlin constant object.

Refactor simplifying numeric validation.

Refactor addressing Java expGetter record.

Refactor resolving expressions as programmatic primarily.

sectionEnd

sectionStart
## v.1.1.9
Fix `abstractExtends` in InterfacePlugin does not support interface, please use `interafaceImplements` instead.
Expand Down

0 comments on commit 682dfef

Please sign in to comment.