Skip to content

Commit

Permalink
Merge pull request #10 from p2m2/develop
Browse files Browse the repository at this point in the history
update with 1.16.3
  • Loading branch information
ofilangi authored Feb 14, 2023
2 parents 25ecdd0 + d6f4dd9 commit 9fe98c0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
version: 2.1
orbs:
node: circleci/node@5.0.0
node: circleci/node@5.1.0
workflows:
compile-workflow:
jobs:
Expand Down Expand Up @@ -67,7 +67,7 @@ executors:
openjdk:
working_directory: ~/repo
docker:
- image: cimg/openjdk:17.0.2
- image: cimg/openjdk:19.0.2
auth:
username: ${DOCKER_USER}
password: ${DOCKER_PASS}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- node/install:
node-version: '17.4'
node-version: '19.6'
- run:
name: Test and Coverage
command: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Scala.js Facade of the [N3.js library](https://github.com/rdfjs/N3.js)
## Install

```
libraryDependencies += "com.github.p2m2" %%% "n3js" % "1.13.0",
libraryDependencies += "com.github.p2m2" %%% "n3js" % "1.16.3",
```

## N3.Parser
Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import sbt.Keys.{testFrameworks, version}

lazy val version_n3="1.13.0"
lazy val version_n3="1.16.3"

def getPackageSetting = Seq(
name := "n3js",
version := scala.util.Properties.envOrElse("PROG_VERSION", version_n3 ),
scalaVersion := "2.13.7",
scalaVersion := "2.13.10",
organization := "com.github.p2m2",
organizationName := "p2m2",
organizationHomepage := Some(url("https://www6.inrae.fr/p2m2")),
licenses := Seq("MIT License" -> url("http://www.opensource.org/licenses/mit-license.php")),
homepage := Some(url("https://github.com/p2m2/N3.js-facade")),
homepage := Some(url("https://github.com/p2m2/facade-scalajs-N3.js")),
description := "Scalajs Facade for N3.js.",
scmInfo := Some(
ScmInfo(
Expand Down Expand Up @@ -71,9 +71,9 @@ lazy val root = project.in(file(".")).
webpackBundlingMode := BundlingMode.LibraryAndApplication(),
Compile / npmDependencies ++= Seq("n3" -> version_n3),
libraryDependencies ++= Seq(
"com.github.p2m2" %%% "data-model-rdfjs" % "1.0.1",
"net.exoego" %%% "scala-js-nodejs-v14" % "0.14.0" % "test",
"com.lihaoyi" %%% "utest" % "0.7.11" % "test"
"com.github.p2m2" %%% "data-model-rdfjs" % "1.0.2",
"net.exoego" %%% "scala-js-nodejs-v16" % "0.14.0" % "test",
"com.lihaoyi" %%% "utest" % "0.8.1" % "test"
) ,
testFrameworks += new TestFramework("utest.runner.Framework"),
coverageMinimumStmtTotal := 20,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.6.1
sbt.version = 1.8.2
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("org.jetbrains" % "sbt-ide-settings" % "1.1.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.7")
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")

0 comments on commit 9fe98c0

Please sign in to comment.