Skip to content

Commit 82bb7bd

Browse files
author
Alexander Steen
committed
correct version numbers2
1 parent d65dd21 commit 82bb7bd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

build.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ lazy val embedding = (project in file("."))
1212
.disablePlugins(sbtassembly.AssemblyPlugin)
1313
.settings(
1414
commonSettings,
15-
version := "1.6",
1615
name := "logic-embedding",
1716
description := "A tool for embedding logics into higher-order logic",
1817
).aggregate(runtime, app)
@@ -34,7 +33,7 @@ lazy val app = (project in file("embedding-app"))
3433
.settings(
3534
commonSettings,
3635
name := "logic-embedding-app",
37-
version := "1.5",
36+
version := "1.6",
3837
Compile/mainClass := Some("leo.modules.EmbeddingApp"),
3938
assembly/mainClass := Some("leo.modules.EmbeddingApp"),
4039
assembly/test := {},

embedding-app/src/main/scala/leo/modules/EmbeddingApp.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import java.io.{File, FileNotFoundException, PrintWriter}
1111

1212
object EmbeddingApp {
1313
final val name: String = "embedproblem"
14-
final val version: Double = 1.5
14+
final val version: Double = 1.6
1515

1616
private[this] var inputFileName = ""
1717
private[this] var outputFileName: Option[String] = None

0 commit comments

Comments
 (0)