Skip to content

Commit dad1fd1

Browse files
committed
Update build to Gradle 7.3.3
This will unblock #574 Signed-off-by: Jonathan Leitschuh <Jonathan.Leitschuh@gmail.com>
1 parent 8338219 commit dad1fd1

10 files changed

+360
-216
lines changed

.gitattributes

+44-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
11
* text eol=lf
2-
*.png binary
3-
*.jar binary
2+
3+
#
4+
# The above will handle all files NOT found below
5+
# https://help.github.com/articles/dealing-with-line-endings/
6+
# https://github.com/Danimoth/gitattributes
7+
8+
# These are explicitly windows files and should use crlf
9+
*.bat text eol=crlf
10+
11+
# These files are text and should be normalized (Convert crlf => lf)
12+
*.bash text eol=lf
13+
*.css text diff=css
14+
*.htm text diff=html
15+
*.html text diff=html
16+
*.java text diff=java
17+
*.sh text eol=lf
18+
19+
20+
# These files are binary and should be left untouched
21+
# (binary is a macro for -text -diff)
22+
*.a binary
23+
*.lib binary
24+
*.icns binary
25+
*.png binary
26+
*.jpg binary
27+
*.jpeg binary
28+
*.gif binary
29+
*.ico binary
30+
*.mov binary
31+
*.mp4 binary
32+
*.mp3 binary
33+
*.flv binary
34+
*.fla binary
35+
*.swf binary
36+
*.gz binary
37+
*.zip binary
38+
*.jar binary
39+
*.tar binary
40+
*.tar.gz binary
41+
*.7z binary
42+
*.ttf binary
43+
*.pyc binary
44+
*.gpg binary
45+
*.bin binary

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1212
- fix new ktlint errors that come from our new default version of ktlint [#651](https://github.com/JLLeitschuh/ktlint-gradle/pull/651)
1313
- fix syntax bug in release logic for VERSION_LATEST_RELEASE.txt [#651](https://github.com/JLLeitschuh/ktlint-gradle/pull/651)
1414

15+
### Changed
16+
17+
- Update build to use Gradle 7.3.3 to support testing with Java 17 [#658](https://github.com/JLLeitschuh/ktlint-gradle/pull/658)
18+
1519
## [11.3.1] - 2023-03-03
1620

1721
### Fixed

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Jonathan Leitschuh
3+
Copyright (c) 2023 Jonathan Leitschuh
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=bf8b869948901d422e9bb7d1fa61da6a6e19411baa7ad6ee929073df85d6365d
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionSha256Sum=33ad4583fd7ee156f533778736fa1b4940bd83b433934d1cc4e9f608e99a6a89
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)