From e3ba86fdbbdb69b5026062f16aa669bc2d4ac1e6 Mon Sep 17 00:00:00 2001 From: Stu Hood Date: Mon, 13 Jul 2015 21:38:48 -0700 Subject: [PATCH] Add notes for the change --- notes/0.13.9/java-constant-fields.markdown | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 notes/0.13.9/java-constant-fields.markdown diff --git a/notes/0.13.9/java-constant-fields.markdown b/notes/0.13.9/java-constant-fields.markdown new file mode 100644 index 000000000..50bd193f2 --- /dev/null +++ b/notes/0.13.9/java-constant-fields.markdown @@ -0,0 +1,17 @@ + [@stuhood]: https://github.com/stuhood + [@jsuereth]: https://github.com/jsuereth + [@adriaanm]: https://github.com/adriaanm + + [1967]: https://github.com/sbt/sbt/issues/1967 + [2085]: https://github.com/sbt/sbt/pull/2085 + +### Changes with compatibility implications + +### Improvements + +### Fixes + +- Changing the value of a constant (final-static-primitive) field will now + correctly trigger incremental compilation for downstream classes. This is to + account for the fact that java compilers may inline constant fields in + downstream classes. [#1967][1967]/[#2085][2085] by [@stuhood][@stuhood]