From cf84d0d58105c6de24fd073a65e20abdb7502a4d Mon Sep 17 00:00:00 2001 From: Alexei Laban Date: Wed, 28 Jun 2023 12:56:18 +0300 Subject: [PATCH] bump version to "0.1.0"; update README.md; --- README.md | 12 ++++++++++-- lib-bhttp/build.gradle.kts | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1f4af81..5824c20 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,17 @@ in [Oblivious HTTP](https://datatracker.ietf.org/doc/draft-ietf-ohai-ohttp/). ## Download -You can download JAR artifacts from [GitHub Releases](https://github.com/flohealth/ok-bhttp/releases). +#### Declare Gradle dependencies + +```kotlin +dependencies { + implementation("com.github.flohealth:ok-bhttp:0.1.0") +} +``` + +#### Download artifacts -Maven artifacts are coming soon. +You can download JAR artifacts from [GitHub Releases](https://github.com/flohealth/ok-bhttp/releases). ## Usage diff --git a/lib-bhttp/build.gradle.kts b/lib-bhttp/build.gradle.kts index 7e114b8..f3bec19 100644 --- a/lib-bhttp/build.gradle.kts +++ b/lib-bhttp/build.gradle.kts @@ -24,7 +24,7 @@ publishing { publishing = this, config = PublishingConfig( artifactId = "ok-bhttp", - version = "0.0.1", + version = "0.1.0", ), ) setupPublishingRepositories(publishing = this)