Skip to content

Commit

Permalink
Bump version to 1.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
skinny85 committed Mar 24, 2024
1 parent 5e3c3dc commit 0bb0014
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Version 1.5 - 2024-03-23
------------------------
- Add capability to generate a `toBuilder()` method
([Issue #16](https://github.com/skinny85/jilt/issues/16))
- Support meta-annotations ([Issue #14](https://github.com/skinny85/jilt/issues/14))
- Allow placing `@Builder` annotation on private constructors
([Issue #13](https://github.com/skinny85/jilt/issues/13))
- Fix a bug where JSpecify `@Nullable` annotations were not properly recognized
([Issue #11](https://github.com/skinny85/jilt/issues/11#issuecomment-2002620000))

Version 1.4 - 2024-01-28
------------------------
- Allow using Jilt with generic classes ([Issue #5](https://github.com/skinny85/jilt/issues/5))
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.4</version>
<version>1.5</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.4' // Jilt is not needed at runtime
annotationProcessor 'cc.jilt:jilt:1.4' // you might also need this dependency in newer Gradle versions
compileOnly 'cc.jilt:jilt:1.5' // Jilt is not needed at runtime
annotationProcessor 'cc.jilt:jilt:1.5' // 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.4/jilt-1.4.jar)
[download the JAR directly](https://repo1.maven.org/maven2/cc/jilt/jilt/1.5/jilt-1.5.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.4'
version '1.5'

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

Expand Down

0 comments on commit 0bb0014

Please sign in to comment.