Skip to content

Commit

Permalink
Release 2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjakubowski84 committed Aug 7, 2023
1 parent 8553690 commit be841ab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ lazy val three = "3.3.0"
lazy val supportedScalaVersions = Seq(twoTwelve, twoThirteen, three)

ThisBuild / organization := "com.github.mjakubowski84"
ThisBuild / version := "2.12.0-SNAPSHOT"
ThisBuild / isSnapshot := true
ThisBuild / version := "2.12.0"
ThisBuild / isSnapshot := false
ThisBuild / scalaVersion := twoThirteen

ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ object InMemoryInputFile {
def fromBytes(bytes: Array[Byte]): InMemoryInputFile = new InMemoryInputFile(bytes.clone())
}

@experimental
class InMemoryInputFile private (content: Array[Byte]) extends InputFile {

override def getLength: Long = content.length.toLong
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ object InMemoryOutputFile {
def apply(name: String): InMemoryOutputFile = new InMemoryOutputFile(name)
}

@experimental
class InMemoryOutputFile private (name: String) extends OutputFile {
private val os = new ByteArrayOutputStream()

Expand Down
2 changes: 1 addition & 1 deletion project/DependecyVersions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object DependecyVersions {
val slf4jVersion = "2.0.7"
val logbackVersion = "1.3.8" // stick to 1.3.x for JDK-8 compatibility
val akkaVersion = "2.6.21" // non-licensed version
val fs2Version = "3.7.0"
val fs2Version = "3.8.0"
val catsEffectVersion = "3.5.1"
val scalaCollectionCompatVersion = "2.11.0"
val scalatestVersion = "3.2.16"
Expand Down

0 comments on commit be841ab

Please sign in to comment.