From 9abd4e7bdd499a41b50bcf744f1ea193a47c1f9e Mon Sep 17 00:00:00 2001 From: Vladyslav Podilnyk Date: Sun, 26 Apr 2020 21:45:35 +0300 Subject: [PATCH] Set version to 1.0.5-SNAPSHOT. --- .github/workflows/build.yml | 2 +- .github/workflows/microsite.yml | 2 ++ README.md | 8 ++++---- version.sbt | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 594eb33..b594d05 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-java@v1 with: java-version: '12.0.1' - - uses: rlespinasse/github-slug-action@master + - uses: rlespinasse/github-slug-action@2.0.0 - name: Set env run: echo ::set-env name=BRANCH_TAG::$(git describe --contains | grep v | grep -v '~' | head -n 1 || true) - name: Cache SBT ivy cache diff --git a/.github/workflows/microsite.yml b/.github/workflows/microsite.yml index a9b7bfb..7477fed 100644 --- a/.github/workflows/microsite.yml +++ b/.github/workflows/microsite.yml @@ -1,6 +1,8 @@ name: Build Microsite on: push: + branches: + - master paths: - 'vuepress/**' diff --git a/README.md b/README.md index 429d598..d4260dd 100644 --- a/README.md +++ b/README.md @@ -18,20 +18,20 @@ include the following components: Quickstart =========== -The latest version is `1.0.2`. To use it just add the following line to your `build.sbt` file: +The latest version is `1.0.4`. To use it just add the following line to your `build.sbt` file: ``` // available for 2.12 and 2.13 -libraryDependencies += "net.playq" %% "d4s" %% "1.0.2" +libraryDependencies += "net.playq" %% "d4s" %% "1.0.4" ``` In case you want to have Circe codecs you should also add this: ``` // available for 2.12 and 2.13 -libraryDependencies += "net.playq" %% "d4s-circe" %% "1.0.2" +libraryDependencies += "net.playq" %% "d4s-circe" %% "1.0.4" ``` If you want to use only the metrics package from `d4s` you can add it like this: ``` // available for 2.12 and 2.13 -libraryDependencies += "net.playq" %% "metrics" %% "1.0.2" +libraryDependencies += "net.playq" %% "metrics" %% "1.0.4" ``` Example project: diff --git a/version.sbt b/version.sbt index 4039cb8..47af175 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "1.0.4" +version in ThisBuild := "1.0.5-SNAPSHOT"