Skip to content

Commit

Permalink
Bump version to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skinny85 committed Jun 21, 2024
1 parent daff034 commit be74f45
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 1.6.1 - 2024-06-20
--------------------------

- Fix a bug where some annotations were copied twice to the setter methods
([Issue #22](https://github.com/skinny85/jilt/pull/22))

Version 1.6 - 2024-06-15
------------------------

Expand Down
8 changes: 4 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Example Maven settings:
<dependency>
<groupId>cc.jilt</groupId>
<artifactId>jilt</artifactId>
<version>1.6</version>
<version>1.6.1</version>
<scope>provided</scope> <!-- Jilt is not needed at runtime -->
</dependency>
</dependencies>
Expand All @@ -92,13 +92,13 @@ repositories {
dependencies {
// ...
compileOnly 'cc.jilt:jilt:1.6' // Jilt is not needed at runtime
annotationProcessor 'cc.jilt:jilt:1.6' // you might also need this dependency in newer Gradle versions
compileOnly 'cc.jilt:jilt:1.6.1' // Jilt is not needed at runtime
annotationProcessor 'cc.jilt:jilt:1.6.1' // you might also need this dependency in newer Gradle versions
}
```

If you're not using dependency managers, you can
[download the JAR directly](https://repo1.maven.org/maven2/cc/jilt/jilt/1.6/jilt-1.6.jar)
[download the JAR directly](https://repo1.maven.org/maven2/cc/jilt/jilt/1.6.1/jilt-1.6.1.jar)
(it's distributed as a self-contained JAR, you don't need any additional dependencies for it)
and add it to your classpath.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'cc.jilt' // we need a domain we own for Maven Central, and jilt.org is scalped
version '1.6'
version '1.6.1'

shadowJar {
relocate 'com.squareup', 'org.jilt.shaded.com.squareup'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ protected final AnnotationSpec generatedAnnotation() throws Exception {
Class<?> generatedAnnotationClass = determineGeneratedAnnotationClass();
return AnnotationSpec
.builder(generatedAnnotationClass)
.addMember("value", "$S", "Jilt-1.6")
.addMember("value", "$S", "Jilt-1.6.1")
.build();
}

Expand Down

0 comments on commit be74f45

Please sign in to comment.