Windowsでのパッケージ名に問題があるためaux
、ライブラリのパッケージ階層内のヘルパー クラスを から移動しています。
de.sciss.scalainterpreter.aux
に
de.sciss.scalainterpreter
クラスはライブラリに対してプライベートprivate[scalainterpreter] object Helper
です。
Typesafe Migration-Managerを使用すると、明らかに、変更に互換性がないことが報告されます。
Found 2 binary incompatibiities
===============================
* class de.sciss.scalainterpreter.aux.Helper does not have a correspondent
in new version
* object de.sciss.scalainterpreter.aux.Helper does not have a correspondent
in new version
しかし、クライアント コードがどちらのオブジェクトも呼び出さない場合でも、インターフェイスには互換性があるのではないかと思います。そのため、マイナー バージョンの増加を使用して変更を示し、これら 2 つのバージョンを同じ意味で使用できるようにすることができます。
正しい?