Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
Published for Scala 3 RC3
  • Loading branch information
AugustNagro committed Apr 26, 2021
1 parent a461db9 commit 7bbd091
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@ sbt new getshaka-org/shaka-crossproject.g8
Or, grab the coordinates directly:

```
libraryDependencies ++= "org.getshaka" %%% "shaka" % "0.2.0"
libraryDependencies ++= "org.getshaka" %%% "shaka" % "0.2.1"
```

## Notes
* The website is down. Github pages doesn't support SPAs very well, so I'm in the process of setting up hosting.

* Scaladoc link doesn't work because Scala 3 RC3's ScalaDoc is broken. The link will be updated when [this issue](https://github.com/lampepfl/dotty/issues/11943) gets fixed.
17 changes: 7 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,15 @@ lazy val root = project
.settings(
organization := "org.getshaka",
name := "shaka",
version := "0.2.1-SNAPSHOT",
version := "0.2.1",
versionScheme := Some("early-semver"),

scalaVersion := "3.0.0-RC1",
scalacOptions ++= Seq(
"-Ycheck-init",
"-Yindent-colons",
"-language:noAutoTupling"
),
scalaVersion := "3.0.0-RC3",
// todo remove when fixed: https://github.com/lampepfl/dotty/issues/11943
Compile / doc / sources := Seq(),

libraryDependencies ++= Seq(
"org.getshaka" %%% "native-converter" % "0.4.0"
"org.getshaka" %%% "native-converter" % "0.4.1"
),

// publishing settings
Expand All @@ -35,7 +32,7 @@ lazy val root = project
)
),
publishMavenStyle := true,
publishArtifact.in(Test) := false,
Test / publishArtifact := false,
pomIncludeRepository := { _ => false },
publishTo := {
val nexus = "https://s01.oss.sonatype.org/"
Expand All @@ -45,4 +42,4 @@ lazy val root = project
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
credentials += Credentials(Path.userHome / ".sbt" / ".credentials")
)
)
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.4.7
sbt.version=1.5.0
3 changes: 1 addition & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

0 comments on commit 7bbd091

Please sign in to comment.