From a492042a10736fd835c62a34271df165adf30fe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lor=C3=A1nd=20Szak=C3=A1cs?= Date: Wed, 7 Apr 2021 09:35:34 +0300 Subject: [PATCH] Prepare v0.3.0 --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- build.sbt | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 092bafa..ec2e2fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # unreleased +# 0.3.0 + +### dependency upgrades + +- [pureharm-config](https://github.com/busymachines/pureharm-config/releases) `0.3.0` + # 0.2.0 ## deprecations diff --git a/README.md b/README.md index 0c29a8b..b22dc46 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ See [changelog](./CHANGELOG.md). The available modules are. -- `"com.busymachines" %% s"pureharm-db-core" % "0.2.0"`. Which has these as its main dependencies: +- `"com.busymachines" %% s"pureharm-db-core" % "0.3.0"`. Which has these as its main dependencies: - [pureharm-core-anomaly](https://github.com/busymachines/pureharm-core/releases) `0.2.0` - [pureharm-core-sprout](https://github.com/busymachines/pureharm-core/releases) `0.2.0` - [pureharm-effects-cats](https://github.com/busymachines/pureharm-effects-cats/releases) `0.2.0` - - [pureharm-config](https://github.com/busymachines/pureharm-config/releases) `0.2.0` + - [pureharm-config](https://github.com/busymachines/pureharm-config/releases) `0.3.0` ## usage diff --git a/build.sbt b/build.sbt index fef5c0a..8b491ef 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ val Scala3RC1 = "3.0.0-RC1" //see: https://github.com/xerial/sbt-sonatype#buildsbt ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org" -ThisBuild / baseVersion := "0.2" +ThisBuild / baseVersion := "0.3" ThisBuild / organization := "com.busymachines" ThisBuild / organizationName := "BusyMachines" ThisBuild / homepage := Option(url("https://github.com/busymachines/pureharm-db-core")) @@ -85,7 +85,7 @@ ThisBuild / resolvers += Resolver.sonatypeRepo("releases") ThisBuild / resolvers += Resolver.sonatypeRepo("snapshots") val pureharmCoreV = "0.2.0" //https://github.com/busymachines/pureharm-core/releases -val pureharmConfigV = "0.2.0" //https://github.com/busymachines/pureharm-config/releases +val pureharmConfigV = "0.3.0" //https://github.com/busymachines/pureharm-config/releases //============================================================================= //============================== Project details ==============================