Skip to content

Commit

Permalink
🚀 bump version to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
magonxesp committed Jun 17, 2024
1 parent afccd30 commit 782a061
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.0] - 2024-06-17

### Features

- Serialize to base64 filters and order by
- Add set order by and set filters to CriteriaBuilder

## [0.2.8] - 2024-06-17

### Miscellaneous Tasks
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ Add the dependency on your `build.gradle.kts`

```kotlin
dependencies {
implementation("io.github.magonxesp:criteria-core:0.2.8")
implementation("io.github.magonxesp:criteria-core:0.3.0")
}
```

For Spring Boot and Spring Data JPA add the spring-boot dependency.

```kotlin
dependencies {
implementation("io.github.magonxesp:criteria-spring-boot:0.2.8")
implementation("io.github.magonxesp:criteria-spring-boot:0.3.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "io.github.magonxesp"
version = "0.2.8"
version = "0.3.0"

mavenPublishing {
coordinates(group as String, "criteria-core", version as String)
Expand Down
2 changes: 1 addition & 1 deletion spring-boot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "io.github.magonxesp"
version = "0.2.8"
version = "0.3.0"

mavenPublishing {
coordinates(group as String, "criteria-spring-boot", version as String)
Expand Down

0 comments on commit 782a061

Please sign in to comment.