Skip to content

Commit

Permalink
Towards Scala Native 0.4.3 (#63)
Browse files Browse the repository at this point in the history
* Towards Scala Native 0.4.3

* Update for release
  • Loading branch information
ekrich authored Jan 4, 2022
1 parent e6eac70 commit b82f716
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ The following projects could be considered as alternatives, the second one for S
* [scala-java-time](https://github.com/cquiroz/scala-java-time) (recommended): More complete but not ported to Scala Native `0.4.0` yet.
* [scalajs-jsjoda](https://github.com/zoepepper/scalajs-jsjoda): implementation of `java.time` on top of the JavaScript library [js-joda](https://github.com/js-joda/js-joda)

## Cross Build Versions

| Scala Version | Scala.js (1.x) | Native (0.4.x) |
| ---------------------- | :-------------------: | :------------: |
| 2.11.x |||
| 2.12.x |||
| 2.13.x |||
| 3.x.x |||

Note: Scala 3 support on Scala Native 0.4.3-RC1 or greater.

## Usage
[![Maven Central](https://img.shields.io/maven-central/v/org.ekrich/sjavatime_native0.4_2.13.svg)](https://maven-badges.herokuapp.com/maven-central/org.ekrich/sjavatime_native0.4_2.13)

Expand Down Expand Up @@ -68,6 +79,7 @@ Follow the [contributing guide](./CONTRIBUTING.md).

## Versions

Release [1.1.7](https://github.com/ekrich/sjavatime/releases/tag/v1.1.7) - (2022-01-04)<br/>
Release [1.1.6](https://github.com/ekrich/sjavatime/releases/tag/v1.1.6) - (2021-12-30)<br/>
Release [1.1.5](https://github.com/ekrich/sjavatime/releases/tag/v1.1.5) - (2021-05-13)<br/>
Release [1.1.4](https://github.com/ekrich/sjavatime/releases/tag/v1.1.4) - (2021-05-12)<br/>
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ val scala300 = "3.1.0"
val versionsBase = Seq(scala212, scala211, scala213)
val versionsJVM = versionsBase :+ scala300
val versionsJS = versionsJVM
val versionsNative = versionsBase
val versionsNative = versionsJVM

ThisBuild / scalaVersion := scala213
ThisBuild / versionScheme := Some("early-semver")
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolvers += Resolver.sonatypeRepo("snapshots")
// versions
val crossVer = "1.1.0"
val scalaJSVersion = "1.8.0"
val scalaNativeVersion = "0.4.2"
val scalaNativeVersion = "0.4.3-RC1"

// Scala.js support
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
Expand Down

0 comments on commit b82f716

Please sign in to comment.