We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9132911 commit 0b90564Copy full SHA for 0b90564
2 files changed
build.sbt
@@ -8,7 +8,7 @@ lazy val root = project
8
.settings(
9
name := "scg-cli",
10
organization := "com.virtuslab.semanticgraphs",
11
- version := "0.1.3-SNAPSHOT",
+ version := "0.1.3",
12
scalaVersion := scala3Version,
13
Compile / PB.targets := Seq(
14
scalapb.gen() -> (Compile / sourceManaged).value
src/main/scala/org/virtuslab/semanticgraphs/analytics/cli/ScgCli.scala
@@ -31,7 +31,7 @@ class ScgCli:
31
32
@Command(name = "version", description = Array("Show scg-cli version"))
33
def version() = {
34
- println("scg-cli 0.1.3-SNAPSHOT")
+ println("scg-cli 0.1.3")
35
}
36
37
@Command(name = "generate", description = Array("Generate SCG metadata"))
0 commit comments