Skip to content

Commit 7bbd091

Browse files
committed
v0.2.1
Published for Scala 3 RC3
1 parent a461db9 commit 7bbd091

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,10 @@ sbt new getshaka-org/shaka-crossproject.g8
1818
Or, grab the coordinates directly:
1919

2020
```
21-
libraryDependencies ++= "org.getshaka" %%% "shaka" % "0.2.0"
21+
libraryDependencies ++= "org.getshaka" %%% "shaka" % "0.2.1"
2222
```
23+
24+
## Notes
25+
* The website is down. Github pages doesn't support SPAs very well, so I'm in the process of setting up hosting.
26+
27+
* 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.

build.sbt

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,15 @@ lazy val root = project
44
.settings(
55
organization := "org.getshaka",
66
name := "shaka",
7-
version := "0.2.1-SNAPSHOT",
7+
version := "0.2.1",
88
versionScheme := Some("early-semver"),
99

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

1714
libraryDependencies ++= Seq(
18-
"org.getshaka" %%% "native-converter" % "0.4.0"
15+
"org.getshaka" %%% "native-converter" % "0.4.1"
1916
),
2017

2118
// publishing settings
@@ -35,7 +32,7 @@ lazy val root = project
3532
)
3633
),
3734
publishMavenStyle := true,
38-
publishArtifact.in(Test) := false,
35+
Test / publishArtifact := false,
3936
pomIncludeRepository := { _ => false },
4037
publishTo := {
4138
val nexus = "https://s01.oss.sonatype.org/"
@@ -45,4 +42,4 @@ lazy val root = project
4542
Some("releases" at nexus + "service/local/staging/deploy/maven2")
4643
},
4744
credentials += Credentials(Path.userHome / ".sbt" / ".credentials")
48-
)
45+
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.7
1+
sbt.version=1.5.0

project/plugins.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")
2-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0")
1+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1")
32
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

0 commit comments

Comments
 (0)