From 4f9836e68f35b17d624025c3b285710bb3080b44 Mon Sep 17 00:00:00 2001 From: Aleksei Semin Date: Wed, 30 Jun 2021 09:32:33 +0200 Subject: [PATCH] [BUILD] v0.1.4 --- README.md | 4 ++-- build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 23bca2b..7a866ea 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ val ast = booleanGrammar.parseToEnd("a & (b1 -> c1) | a1 & !b | !(a1 -> a2) -> a ```kotlin dependencies { - implementation("me.alllex.parsus:parsus:0.1.3") + implementation("me.alllex.parsus:parsus:0.1.4") } ``` @@ -45,7 +45,7 @@ dependencies { me.alllex.parsus parsus - 0.1.3 + 0.1.4 ``` diff --git a/build.gradle.kts b/build.gradle.kts index ea60120..292deba 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "me.alllex.parsus" -version = "0.1.4-SNAPSHOT" +version = "0.1.4" dependencies { testImplementation(kotlin("test-junit"))