Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/update/sbt-typelevel-0.5.2' into…
Browse files Browse the repository at this point in the history
… update/scala-library-2.13.12
  • Loading branch information
armanbilge committed Sep 11, 2023
2 parents abdfedc + a9566bd commit 410b036
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 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
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 410b036

Please sign in to comment.