-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release scala 2.13 version #103
Comments
Hello import coursier.maven.MavenRepository
object core extends ScalaModule {
def scalaVersion = "2.13.4"
def repositories = super.repositories ++ Seq(
MavenRepository("https://oss.sonatype.org/content/repositories/snapshots")
)
def ivyDeps = Agg(
ivy"com.bot4s::telegram-core:5.0.0-SNAPSHOT"
)
} Please note that support for Scala.js and Scala 2.11 were drop in this release (Scala.js is on my todo list, but 2.13 was more important IMO), support for akka should be ok, but I did not test it thoroughly yet (I mostly tested the jvm polling setup). I am planning to do a release candidate soon, but I would like make some changes first as this will introduces some breaking changes (tokens are not supported anymore in Scala, are deprecated and will be removed in the next version). I'll keep this issue open to keep track of the releases up until 5.0.0 Thanks |
wow, thanks for the quick reply! |
That should be possible to get it running with ZIO, at least some part of it. |
I got it running with ZIO... will do some cleanups and then send you a link to a repo. |
Nice ! |
@ex0ns here's the zio version I've built so far: I had to patch the sttp-client ( #106 ) to be able to handle errors correctly (like in |
Cause of free time over eastern, I came across an old proof of concept bot of mine made with this library. I wanted to update it to the newest versions of akka, scala etc. and noticed this lib is still on 2.12.
It looks like you've already done what is necessary to run the code in 2.13, so what is left is just publishing the artifacts for 2.13.
If this is true, I'd appreciate it if you could publish them!
Thanks,
Dominik
The text was updated successfully, but these errors were encountered: