Skip to content

Commit

Permalink
RELEASE :: v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daybreak312 committed Sep 24, 2024
1 parent 34c3a3f commit 1b5ed56
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ publishing {

groupId = "org.smoodi.framework"
artifactId = "docs-annotations"
version = "1.1.0-SNAPSHOT"
version = "1.2.0"

pom {
name.set("Docs Annotations")
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/org/smoodi/annotation/ModifyOriginal.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
* this.proxiedString.append(str);
* }
* </pre>
*
* @author Daybreak312
* @since v1.1.0
*/
@Target({ElementType.METHOD, ElementType.PARAMETER})
@Retention(RetentionPolicy.CLASS)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/smoodi/annotation/NotNull.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.1.1
* @since v1.1.0
*/
@Target({ElementType.PARAMETER, ElementType.METHOD, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.RUNTIME)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/smoodi/annotation/NullValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.1.1
* @since v1.1.0
*/
@Target({ElementType.PARAMETER, ElementType.METHOD, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.RUNTIME)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/smoodi/annotation/Nullable.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.1.1
* @since v1.1.0
*/
@Target({ElementType.PARAMETER, ElementType.METHOD, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.1.1
* @since v1.2.0
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/smoodi/annotation/UseCopy.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.1.1
* @since v1.1.0
*/
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.CLASS)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/smoodi/annotation/array/CopiedArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.0.0
* @since v1.1.0
*/
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.CLASS)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/smoodi/annotation/array/EmptyArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.0.0
* @since v1.1.0
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.CLASS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.0.0
* @since v1.1.0
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.CLASS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* </pre>
*
* @author Daybreak312
* @since v1.0.1
* @since v1.1.0
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.CLASS)
Expand Down

0 comments on commit 1b5ed56

Please sign in to comment.