Skip to content

Commit

Permalink
Update Scala versions and fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sloshy committed Mar 25, 2021
1 parent 4d729a4 commit b1134bd
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ val scalatestPlusScalacheck =
val flexmark = "com.vladsch.flexmark" % "flexmark-all" % flexmarkV % "test"

//Scala versions supported
val scala213 = "2.13.4"
val scala212 = "2.12.12"
val scala213 = "2.13.5"
val scala212 = "2.12.13"

// Project setup
inThisBuild(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ object PureS3Client {
* @param awsRegion The AWS region you are operating in.
* @return A `Resource` containing a `PureS3Client` using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect](
blocker: Blocker,
awsRegion: Region
): Resource[F, PureS3Client[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ object S3BucketOps {
* @param awsRegion The AWS region you are operating in.
* @return An `S3BucketOps` instance using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect](
blocker: Blocker,
awsRegion: Region
): Resource[F, S3BucketOps[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ object S3ObjectOps {
* @param awsRegion The AWS region you are operating in.
* @return An `S3ObjectOps` instance using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect](
blocker: Blocker,
awsRegion: Region
): Resource[F, S3ObjectOps[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ object S3Sink {
* @param awsRegion The AWS region you are operating in.
* @return An `S3Sink` instance using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect](
blocker: Blocker,
awsRegion: Region
): Resource[F, S3Sink[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ object S3Source {
* @param awsRegion The AWS region you are operating in.
* @return An `S3Source` instance using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect](
blocker: Blocker,
awsRegion: Region
): Resource[F, S3Source[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ object SimpleS3Client {
* @param awsRegion The AWS region you are operating in.
* @return A `SimpleS3Client` instance using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: ConcurrentEffect](
blocker: Blocker,
awsRegion: Region
): Resource[F, SimpleS3Client[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ object PureSqsClient {
* @param awsRegion The AWS region you are operating in.
* @return A `Resource` containing a `PureSqsClient` using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: Async: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: Async](
blocker: Blocker,
awsRegion: Region
): Resource[F, PureSqsClient[G]] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ object SimpleSqsClient {
* @param awsRegion The AWS region you are operating in.
* @return A `SimpleSqsClient` instance using an asynchronous backend.
*/
def asyncIn[F[_]: Sync: ContextShift, G[_]: Async: ContextShift](
def asyncIn[F[_]: Sync: ContextShift, G[_]: Async](
blocker: Blocker,
awsRegion: Region
): Resource[F, SimpleSqsClient[G]] =
Expand Down

0 comments on commit b1134bd

Please sign in to comment.