Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit 572e9d4

Browse files
authored
Merge pull request #433 from exoego/scala2.13
Bump Scala
2 parents 7ca2b2a + 7fc7afd commit 572e9d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
scala: [2.13.5, 2.12.13]
9+
scala: [2.13.7, 2.12.15]
1010
nodejs: [16.3.0, 14.16.0, 12.21.0, 10.24.0]
1111
steps:
1212
- uses: actions/[email protected]

app/nodejs-v16/src/main/scala/io/scalajs/nodejs/crypto/KeyObject.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import scala.scalajs.js.|
1010
@js.native
1111
// TODO: Can be exposed as newable class when Node.js v10 dropped
1212
sealed trait KeyObject extends js.Object {
13-
def export(options: KeyObjectExportOptions): Buffer | String = js.native
14-
def export(): Buffer = js.native
13+
def `export`(options: KeyObjectExportOptions): Buffer | String = js.native
14+
def `export`(): Buffer = js.native
1515

1616
/** For asymmetric keys, this property represents the type of the key. This property is undefined for unrecognized
1717
* KeyObject types and symmetric keys.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lazy val scala213 = "2.13.6"
1+
lazy val scala213 = "2.13.7"
22
lazy val scala212 = "2.12.15"
33
ThisBuild / organization := "net.exoego"
44
ThisBuild / crossScalaVersions := Seq(scala213, scala212)

0 commit comments

Comments
 (0)