Skip to content

Commit 1e2b8e5

Browse files
committed
Drop SNAPSHOT, ready for v0.1.0 release
1 parent c8651a6 commit 1e2b8e5

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ All together, these should enable model inspection and modification, extra compi
100100

101101
## Getting Started
102102

103-
You'll need sbt.
103+
104+
You'll need sbt.
105+
106+
To build and publish locally:
104107

105108
```
106109
sbt publishLocal
@@ -117,17 +120,19 @@ to build against all of Scala 2.11, 2.12, 2.13 and Dotty/3.0, where possible.
117120
Then you can add this to your project's build.sbt
118121

119122
```scala
120-
libraryDependencies += "org.emergentorder.onnx" %% "onnx-scala" % "1.6.0-0.1.0-SNAPSHOT"
123+
libraryDependencies += "com.github.EmergentOrder" %% "onnx-scala" % "0.1.0"
121124
```
122125

123126
or
124127

125128
```scala
126-
libraryDependencies += "org.emergentorder.onnx" %% "onnx-scala-zio" % "1.6.0-0.1.0-SNAPSHOT"
129+
libraryDependencies += "com.github.EmergentOrder" %% "onnx-scala-zio" % "0.1.0"
127130
```
128131

129132
and build away with the traits provided. Backend implementation (and other) PRs welcome!
130133

134+
As of v0.1.0, artifacts are published to Sonatype OSS.
135+
131136
## Program Generator
132137

133138
To generate an ONNX-Scala program from an ONNX Protobuf file (often `*.onnx`):

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ scalaVersion := scala212Version
1212
lazy val commonSettings = Seq(
1313
scalaJSUseMainModuleInitializer := true, //Test only
1414
organization := "org.emergentorder.onnx",
15-
version := "v0.1.0-SNAPSHOT",
15+
version := "v0.1.0",
1616
resolvers += Resolver.mavenLocal,
1717
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
1818
updateOptions := updateOptions.value.withLatestSnapshots(false),

0 commit comments

Comments
 (0)