Releases: ensime/scala-debugger
1.1.0 M3 Release (sbt plugin only)
Represents the release of the sbt plugin for the Scala debugger. Credit goes to @alexarchambault for writing sbt-ammonite, which @dickwall and I used as a starting point for writing the sbt plugin for sdb
.
You can try it out by creating ~/.sbt/0.13/plugins/sdb.sbt:
addSbtPlugin("org.scala-debugger" %% "sbt-scala-debugger" % "1.1.0-M3")
And then starting sbt
and running the following command:
sdb:run
This will start an sdb
session.
1.1.0 M3 Release
This is the third iteration of version 1.1.0. This is much closer to the final representation of the debugger API.
- Includes the first implementation of the Scala debugger language
- Includes the first implementation of the Scala debugger tool (sdb)
- Includes major refactorings of the Scala debugger API, including wrappers around JDI event types
- Adds the first build of the debugger API for 2.12 (specifically 2.12.1)
Attached are assembled versions (licenses included inside) of sdb
compiled against Scala 2.10, 2.11, and 2.12. The version of Scala used to compile sdb
does not influence the debug logic of sdb
. In other words, you can use sdb
compiled against Scala 2.10 to debug code compiled against Scala 2.12.
Instructions on usage will be added to the official website and repository docs/
directory. These jars are standalone, meaning that they can be executed via java -jar sdb-1.1.0-M3-2.10.jar
, etc.
1.1.0 M2 release
This is the second iteration of version 1.1.0. This was cut to provide a couple of fixes for Ensime server as well as update a couple of APIs that were determined to be less than ideal. As such, this release is in fact stable, but is not feature complete. Changes and new features will be documented in the official 1.1.0 release.
1.1.0 M1 release
This is the first iteration of version 1.1.0. This was cut to enable Ensime's server to have a stable release for the refactored debugger actor code. As such, this release is in fact stable, but is not feature complete. Changes and new features will be documented in the official 1.1.0 release.
v1.0.0
First release under org.scala-debugger
org name. See the release page for specific release notes.
v1.0.0-senkbeil
Release for version 1.0.0 of the Scala Debugger project. This was the only release under the org.senkbeil
org name.
Note that this should have been a pre 1.0.0 release and is not compatible with any later 1.x.y release.