Skip to content

Commit

Permalink
GH-83 Support repeated @description annotation on methods
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Oct 21, 2021
1 parent b4634f7 commit 76d2e80
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ repositories {
dependencies {
// Default
implementation 'net.dzikoysk:cdn:1.10.0'
implementation 'net.dzikoysk:cdn:1.10.1'
// Kotlin wrapper
implementation 'net.dzikoysk:cdn-kt:1.10.0'
implementation 'net.dzikoysk:cdn-kt:1.10.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion cdn-kt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>cdn-parent</artifactId>
<groupId>net.dzikoysk</groupId>
<version>1.10.0</version>
<version>1.10.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion cdn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>cdn-parent</artifactId>
<groupId>net.dzikoysk</groupId>
<version>1.10.0</version>
<version>1.10.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.FIELD)
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Descriptions {

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<groupId>net.dzikoysk</groupId>
<artifactId>cdn-parent</artifactId>
<packaging>pom</packaging>
<version>1.10.0</version>
<version>1.10.1</version>

<scm>
<connection>scm:git:https://github.com/dzikoysk/cdn.git</connection>
Expand Down Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>net.dzikoysk</groupId>
<artifactId>cdn</artifactId>
<version>1.10.0</version>
<version>1.10.1</version>
</dependency>

<!-- General -->
Expand Down

0 comments on commit 76d2e80

Please sign in to comment.