Skip to content

Commit

Permalink
Release 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed May 22, 2023
1 parent e54d33b commit 4a4a498
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,8 @@ jobs:
- name: Build and test
run: |
sbt -v -Dfile.encoding=UTF-8 +test
sbt -v -Dfile.encoding=UTF-8 clean coverage test coverageAggregate
rm -rf "$HOME/.ivy2/local" || true
find $HOME/Library/Caches/Coursier/v1 -name "ivydata-*.properties" -delete || true
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true
find $HOME/.sbt -name "*.lock" -delete || true
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: target/scala-2.13/coverage-report/cobertura.xml
find $HOME/.sbt -name "*.lock" -delete || true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Simple asynchronous, non-blocking client implementation of Sendgrid.
### Dependency Configuration

```scala
libraryDependencies += "com.outr" %% "sendgrid4s" % "1.0.3"
libraryDependencies += "com.outr" %% "sendgrid4s" % "1.0.7"
```
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ val scala213 = "2.13.10"

name := "sendgrid4s"
organization := "com.outr"
version := "1.0.6"
version := "1.0.7"

scalaVersion := scala213
crossScalaVersions := List(scala3, scala213)
Expand Down Expand Up @@ -35,5 +35,5 @@ outputStrategy := Some(StdoutOutput)
fork := true

libraryDependencies ++= Seq(
"com.outr" %% "spice-client-okhttp" % "0.0.31"
"com.outr" %% "spice-client-okhttp" % "0.0.32"
)

0 comments on commit 4a4a498

Please sign in to comment.