Arnout Engelen
Arnout Engelen
I don't think it would be particularly useful to include this in the default version string, but it would be neat to offer a utility function to easily get the...
I'm running into this while generating the documentation for akka-http, which now requires a macro to be expanded for the project to compile. Is there a fundamental reason why macro...
To be a bit more specific, the macro is defined in the `akka-parsing` subproject, and looks like this: ``` object since213macro { def impl(c: Context)(annottees: c.Expr[Any]*): c.Expr[Any] = annottees match...
Adding `"-Xplugin:/home/aengelen/.ivy2/cache/org.scalamacros/paradise_2.12.8/jars/paradise_2.12.8-2.1.1.jar"` to the unidoc `scalacOptions` *seems* to work, so that is promising
Ah, I should have been more specific: it works for me with macro usage, but not with macro definitions. I applied it to https://github.com/akka/akka-http/pull/2484/files in akka-http (the sbt side unfortunately...
`set ThisBuild / version := "2.3.0-dev"` (note that you can do this in your own `version.sbt`, it doesn't need to be in the projects' `build.sbt`)
> My understanding is that scalap shows you what's in ScalaSignature rather than the (erased) method descriptor or the (Java) (generic) signature, the latter of which is what Harrison fixed...
> I checked with scalap the binaries of the v5.1.0 version, and they do not show it to be using String, but rather the AnyVal wrapper in the binary. If...
@diesalbla no, I think it can be broken down as follows: * 5.1.0 was compiled with scala =2.12.9, which produces a (correct) `Eq` signature * MiMa reports that if there...
Add the files/directories to ignore in your .gitignore file (and commit that .gitignore file)