Skip to content

Commit

Permalink
Merge pull request #216 from Enigmatis/development
Browse files Browse the repository at this point in the history
release 7.0.1
  • Loading branch information
yarinvak authored Jul 9, 2019
2 parents e0c48a4 + 18cf896 commit 978ed47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ syntax for GraphQL schema definition.

```groovy
dependencies {
compile "io.github.graphql-java:graphql-java-annotations:7.0"
compile "io.github.graphql-java:graphql-java-annotations:7.0.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.jvmargs=-Dfile.encoding=UTF-8

version = 7.0
version = 7.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public List<Method> getOrderedMethods(Class c) {
.collect(Collectors.toList());
}

public static Boolean isGraphQLField(AnnotatedElement element) {
public Boolean isGraphQLField(AnnotatedElement element) {
GraphQLField annotation = element.getAnnotation(GraphQLField.class);
if (annotation == null) {
return null;
Expand Down

0 comments on commit 978ed47

Please sign in to comment.