Skip to content

Commit

Permalink
🚀 bump version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
magonxesp committed Jun 17, 2024
1 parent 084e44c commit 9ff1872
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## [0.2.0] - 2024-06-17

### Bug Fixes

- Contains and not contains operator in FilterScalarPredicateAdapter
- Expected expression
- Deno parseArgs import
- Relative import
- Paged results on mongodb adapter

### Features

- Support make joins on CriteriaJPASpecificationAdapter
- Add logging level debug for show sql executed by hibernate
- Allow modify an existing criteria
- Convert to data class the Criteria class

### Miscellaneous Tasks

- Deploy reference docs
- Create release workflow
- Create release workflow
- Ci release
- Ci release
- Ci release
- Ci release
- Ci release
- Release to maven central
- Set publish env variables
- Test
- Fix release action
- Prevent make release of main branch
- Dispatch only on tag

### Testing

- Test all operators in mongodb

## [0.1.0] - 2024-04-20

### Features
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.1.0")
implementation("io.github.magonxesp:criteria-core:0.2.0")
}
```

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

```kotlin
dependencies {
implementation("io.github.magonxesp:criteria-spring-boot:0.1.0")
implementation("io.github.magonxesp:criteria-spring-boot:0.2.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.1.0"
version = "0.2.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.1.0"
version = "0.2.0"

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

0 comments on commit 9ff1872

Please sign in to comment.