Skip to content

Commit

Permalink
increased version to 0.102 for release with a bug fix from https://gi…
Browse files Browse the repository at this point in the history
  • Loading branch information
c committed Jul 11, 2023
1 parent ba8d6be commit cda7b2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val appVersion:String = "0.101"
val appVersion:String = "0.102"
val globalScalaVersion = "3.2.1"

ThisBuild / organization := "ai.dragonfly"
Expand All @@ -15,8 +15,7 @@ ThisBuild / tlSonatypeUseLegacyHost := false
lazy val narr = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Full)
.settings(
name := "narr",
description := "Native Typed Arrays with Scala Semantics for Scala JVM, ScalaJS, and Scala Native!"
description := "Native Typed Arrays with Scala Semantics for Scala JVM, ScalaJS, and Scala Native!",
)
.jvmSettings()
.jsSettings()
Expand Down
2 changes: 0 additions & 2 deletions demo/shared/src/main/scala/Demo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ case class TArrayDemonstration[AT <: NativeTypedArray] (override val name:String

object Demo extends XApp(NativeConsole(style = "padding: 8px; overflow: scroll;")) with App {

// readNarrayInt(NArray(1, 2, 3))

val demonstrations: Array[Demonstration] = Array[Demonstration](
TArrayDemonstration( "NArray[Byte](1, 2, 3)", {
val ba:ByteArray = new ByteArray(5)
Expand Down

0 comments on commit cda7b2a

Please sign in to comment.