Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A lightweight, fluent Java library for building SQL queries and filtering in-mem
- Supports all common operators: `=`, `!=`, `>`, `<`, `LIKE`, `IN`, `BETWEEN`, `IS NOT NULL`
- Column selection, `GROUP BY`, `ORDER BY`, `LIMIT`, and `OFFSET`
- In-memory filtering via `QueryableStorage`
- Zero runtime dependenciespure Java 21
- Zero runtime dependencies, pure Java 25

## Installation

Expand All @@ -19,7 +19,7 @@ Add the dependency to your `pom.xml`:
<dependency>
<groupId>com.github.EzFramework</groupId>
<artifactId>java-query-builder</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

Expand Down
Loading