Skip to content

Commit

Permalink
Merge pull request #3301 from typelevel/update/scala-library-2.13.12
Browse files Browse the repository at this point in the history
Update scala-library to 2.13.12
  • Loading branch information
armanbilge authored Sep 11, 2023
2 parents 804432e + 410b036 commit cfa0ab4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ThisBuild / organization := "co.fs2"
ThisBuild / organizationName := "Functional Streams for Scala"
ThisBuild / startYear := Some(2013)

val Scala213 = "2.13.11"
val Scala213 = "2.13.12"

ThisBuild / scalaVersion := Scala213
ThisBuild / crossScalaVersions := Seq("2.12.18", Scala213, "3.3.1")
Expand Down
5 changes: 1 addition & 4 deletions io/shared/src/main/scala/fs2/io/io.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,17 @@
*/

package fs2
package io

import cats.effect.kernel.Async
import cats.effect.kernel.Sync
import cats.effect.syntax.all._
import cats.syntax.all._
import org.typelevel.scalaccompat.annotation._

import java.io.{InputStream, OutputStream}

/** Provides various ways to work with streams that perform IO.
*/
@nowarn213("msg=package object inheritance is deprecated")
object `package` extends ioplatform {
package object io extends ioplatform {
type IOException = java.io.IOException

/** Reads all bytes from the specified `InputStream` with a buffer size of `chunkSize`.
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val sbtTypelevelVersion = "0.5.0"
val sbtTypelevelVersion = "0.5.2"
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion)
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
Expand Down

0 comments on commit cfa0ab4

Please sign in to comment.