Skip to content

Commit

Permalink
* Bump vers
Browse files Browse the repository at this point in the history
* Updated zlayer impl
  • Loading branch information
tampler committed Sep 22, 2020
1 parent 6b3a8cb commit a399990
Show file tree
Hide file tree
Showing 11 changed files with 92 additions and 149 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.bloop
.metals
.idea
.vscode
target
project/target
project/project
Expand Down
9 changes: 6 additions & 3 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
version = "2.4.2"
version = "2.6.4"
maxColumn = 120
align = most
align.preset = most
align.multiline = false
continuationIndent.defnSite = 2
assumeStandardLibraryStripMargin = true
docstrings = JavaDoc
lineEndings = preserve
includeCurlyBraceInSelectChains = false
danglingParentheses = true
danglingParentheses.preset = true
spaces {
inImportCurlyBraces = true
}
optIn.annotationNewlines = true
newlines.alwaysBeforeMultilineDef = false

rewrite.rules = [SortImports, RedundantBraces]

rewrite.redundantBraces.generalExpressions = false
rewriteTokens = {
"⇒": "=>"
"→": "->"
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: scala
jdk: openjdk11
scala:
- 2.12.11
- 2.12.12
- 2.13.3

script:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ This project aims to ease ZIO integration with AWS S3, providing a clean, simple
## Integration

```scala
"zio.crew" %% "zio-aws-s3" % latestVersion
"hot.crew" %% "zio-aws-s3" % latestVersion
```
## Getting Started

```scala
// build.sbt
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "1.0.0-RC21-2",
"zio.crew" %% "zio-aws-s3" % latestVersion
"hot.crew" %% "zio-aws-s3" % latestVersion
)

import zio._
import zio.crew.s3.{ AwsAgent, AwsApp }
import hot.crew.s3.{ AwsAgent, AwsApp }
import software.amazon.awssdk.regions.Region

import scala.jdk.CollectionConverters._
Expand Down
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
resolvers ++= Seq(
Resolver.mavenLocal,
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots"),
Resolver.jcenterRepo
Resolver.sonatypeRepo("snapshots")
)

inThisBuild(
List(
scalaVersion := "2.13.3",
crossScalaVersions := Seq("2.12.12", "2.13.3"),
organization := "zio.crew",
organization := "hot.crew",
homepage := Some(url("https://github.com/hot-crew/zio-aws-s3")),
startYear := Some(2020),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
Expand Down
21 changes: 0 additions & 21 deletions src/main/scala-2.12/compat.scala

This file was deleted.

21 changes: 0 additions & 21 deletions src/main/scala-2.13/compat.scala

This file was deleted.

Loading

0 comments on commit a399990

Please sign in to comment.