Skip to content

Commit

Permalink
2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
haiyangl committed Oct 20, 2024
1 parent b4ea6fb commit 4fed5ff
Show file tree
Hide file tree
Showing 74 changed files with 16 additions and 147 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.3

* Improvements

## 2.1.2

* Improvements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# abacus-query

[![Maven Central](https://img.shields.io/maven-central/v/com.landawn/abacus-query.svg)](https://maven-badges.herokuapp.com/maven-central/com.landawn/abacus-query/)
[![Javadocs](https://img.shields.io/badge/javadoc-2.1.2-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-query/2.1.2/index.html)
[![Javadocs](https://img.shields.io/badge/javadoc-2.1.3-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-query/2.1.3/index.html)

## Download/Installation & [Changes](https://github.com/landawn/abacus-query/blob/master/CHANGES.md):

Expand All @@ -10,7 +10,7 @@
* Gradle:
```gradle
// JDK 1.8 or above:
compile 'com.landawn:abacus-query:2.1.2'
compile 'com.landawn:abacus-query:2.1.3'
```


Expand Down
2 changes: 1 addition & 1 deletion maven/0.0.1-SNAPSHOT/abacus-query-0.0.1-SNAPSHOT.pom
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-common</artifactId>
<version>5.3.20</version>
<version>5.3.21</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.landawn</groupId>
<artifactId>abacus-query</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<packaging>jar</packaging>

<name>abacus-query</name>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-common</artifactId>
<version>5.3.20</version>
<version>5.3.21</version>
<scope>provided</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public abstract class AbstractCondition implements Condition, Cloneable {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/All.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class All extends Cell {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/And.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class And extends Junction {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Any.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Any extends Cell {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Between.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Between extends AbstractCondition {
// For Kryo
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Binary.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Binary extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Cell.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Cell extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Clause.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public abstract class Clause extends Cell {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Condition.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
/**
* Condition should be immutable except using {@code clearParameter()} to release resources.
*
* @author Haiyang Li
* @since 0.8
* @see ConditionFactory
* @see ConditionFactory.CF
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@
/**
* A factory for creating Condition objects.
*
* @author Haiyang Li
* @since 0.8
*/
public class ConditionFactory {
/**
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Criteria.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
* {@code clause} is independent. A {@code clause} should not be included in another {@code clause}. If there more than
* one {@code clause}, they should be composed in one {@code Criteria} condition.
*
* @author Haiyang Li
* @since 0.8
*/
public class Criteria extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/CriteriaUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
@Internal
public final class CriteriaUtil {
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/CrossJoin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class CrossJoin extends Join {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Equal.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Equal extends Binary {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Except.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Except extends Clause {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Exists.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Exists extends Cell {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Expression.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Expression extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/FullJoin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class FullJoin extends Join {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/GreaterEqual.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class GreaterEqual extends Binary {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/GreaterThan.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class GreaterThan extends Binary {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/GroupBy.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class GroupBy extends Clause {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Having.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Having extends Clause {
// For Kryo
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/In.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class In extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/InSubQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

/**
*
* @author Haiyang Li
* @since 1.10.12
*/
public class InSubQuery extends AbstractCondition {
// For Kryo
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/InnerJoin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class InnerJoin extends Join {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Intersect.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Intersect extends Clause {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Is.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Is extends Binary {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsInfinite.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsInfinite extends Is {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsNaN.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsNaN extends Is {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsNot.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsNot extends Binary {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsNotInfinite.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsNotInfinite extends IsNot {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsNotNaN.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsNotNaN extends IsNot {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsNotNull.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsNotNull extends IsNot {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/IsNull.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class IsNull extends Is {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Join.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class Join extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/Junction.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@
* This class is used to join multiple conditions. like {@code And}, {@code Or}. But must not put clause(where, order by
* ...) into it. Those clauses are joined by {@code Criteria}.
*
* @author Haiyang Li
* @see com.landawn.abacus.condition.Criteria
* @since 0.8
*/
public class Junction extends AbstractCondition {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/LeftJoin.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class LeftJoin extends Join {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/landawn/abacus/condition/LessEqual.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
*
* @author Haiyang Li
* @since 0.8
*/
public class LessEqual extends Binary {

Expand Down
Loading

0 comments on commit 4fed5ff

Please sign in to comment.