Skip to content

Commit

Permalink
0.8.44
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct committed Nov 20, 2023
1 parent a6db5ff commit 7b5f5ce
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions doc/docs/overview/get-started/create-project.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Modify build.gradle or pom.xml to add dependencies:

```xml title="pom.xml"
<properties>
<jimmer.version>0.8.42</jimmer.version>
<jimmer.version>0.8.44</jimmer.version>
</properties>

<dependencies>
Expand All @@ -76,7 +76,7 @@ Modify build.gradle or pom.xml to add dependencies:

```groovy
ext {
jimmerVersion = '0.8.42'
jimmerVersion = '0.8.44'
}
dependencies {
Expand All @@ -92,7 +92,7 @@ dependencies {
<TabItem value="gradlekts" label="Gradle (Kotlin)">

```kotlin
val jimmerVersion = "0.8.42"
val jimmerVersion = "0.8.44"

dependencies {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Jimmer本身是高度中立的,可以脱离spring-boot使用;但同时也提

```xml title="pom.xml"
<properties>
<jimmer.version>0.8.42</jimmer.version>
<jimmer.version>0.8.44</jimmer.version>
</properties>

<dependencies>
Expand All @@ -75,7 +75,7 @@ Jimmer本身是高度中立的,可以脱离spring-boot使用;但同时也提

```groovy title="build.gradle"
ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
}
dependencies {
Expand All @@ -90,7 +90,7 @@ dependencies {
<TabItem value="gradlekts" label="Gradle(kts)">

```kotlin title="build.gradle.kts"
val jimmerVersion = "0.8.42"
val jimmerVersion = "0.8.44"

dependencies {

Expand Down
2 changes: 1 addition & 1 deletion example/java/data-authorization/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
}

group 'org.example'
Expand Down
2 changes: 1 addition & 1 deletion example/java/jimmer-cloud/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
springBootVersion = "2.7.0"
springCloudVersion = "2021.0.6"
}
Expand Down
2 changes: 1 addition & 1 deletion example/java/jimmer-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
}

group 'org.babyfish.jimmer.example.core'
Expand Down
2 changes: 1 addition & 1 deletion example/java/jimmer-sql-graphql/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
springBootVersion = "2.7.0"
}

Expand Down
2 changes: 1 addition & 1 deletion example/java/jimmer-sql/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
springBootVersion = "2.7.0"
}

Expand Down
2 changes: 1 addition & 1 deletion example/java/save-command/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

ext {
jimmerVersion = "0.8.42"
jimmerVersion = "0.8.44"
}

group 'org.example'
Expand Down

0 comments on commit 7b5f5ce

Please sign in to comment.