Skip to content

Commit

Permalink
Release 0.3.8 (#1276)
Browse files Browse the repository at this point in the history
  • Loading branch information
densh committed Jul 16, 2018
1 parent 6de017a commit 365482e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

0.3.8 (Jul 16, 2018)
----------------------

`Read release notes for 0.3.8 on GitHub <https://github.com/scala-native/scala-native/releases/tag/v0.3.8>`_.

0.3.7 (Mar 29, 2018)
----------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.3.7'
version = u'0.3.8'
# The full version, including alpha/beta/rc tags.
release = u'0.3.7'
release = u'0.3.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
11 changes: 11 additions & 0 deletions docs/lib/javalib.rst
Expand Up @@ -136,6 +136,7 @@ Here is the list of currently available classes:
* ``java.lang.RejectedExecutionException``
* ``java.lang.Runnable``
* ``java.lang.Runtime``
* ``java.lang.Runtime$ProcessBuilderOps``
* ``java.lang.RuntimeException``
* ``java.lang.SecurityException``
* ``java.lang.Short``
Expand Down Expand Up @@ -222,6 +223,7 @@ Here is the list of currently available classes:
* ``java.net.URL``
* ``java.net.URLClassLoader``
* ``java.net.URLConnection``
* ``java.net.URLEncoder``
* ``java.net.UnknownHostException``
* ``java.net.UnknownServiceException``
* ``java.nio.Buffer``
Expand Down Expand Up @@ -301,7 +303,10 @@ Here is the list of currently available classes:
* ``java.nio.charset.StandardCharsets``
* ``java.nio.charset.UnmappableCharacterException``
* ``java.nio.charset.UnsupportedCharsetException``
* ``java.nio.file.AccessDeniedException``
* ``java.nio.file.CopyOption``
* ``java.nio.file.DirectoryIteratorException``
* ``java.nio.file.DirectoryNotEmptyException``
* ``java.nio.file.DirectoryStream``
* ``java.nio.file.DirectoryStream$Filter``
* ``java.nio.file.DirectoryStreamImpl``
Expand Down Expand Up @@ -369,8 +374,10 @@ Here is the list of currently available classes:
* ``java.security.NoSuchAlgorithmException``
* ``java.security.Principal``
* ``java.security.Timestamp``
* ``java.security.TimestampConstructorHelper``
* ``java.security.cert.CertPath``
* ``java.security.cert.Certificate``
* ``java.security.cert.CertificateEncodingException``
* ``java.security.cert.CertificateException``
* ``java.security.cert.CertificateFactory``
* ``java.security.cert.X509Certificate``
Expand Down Expand Up @@ -571,12 +578,16 @@ Here is the list of currently available classes:
* ``java.util.concurrent.atomic.AtomicReferenceArray``
* ``java.util.concurrent.locks.AbstractOwnableSynchronizer``
* ``java.util.concurrent.locks.AbstractQueuedSynchronizer``
* ``java.util.function.BiFunction``
* ``java.util.function.BiFunction$class``
* ``java.util.function.BiPredicate``
* ``java.util.function.BiPredicate$class``
* ``java.util.function.Function``
* ``java.util.function.Function$class``
* ``java.util.function.Predicate``
* ``java.util.function.Predicate$class``
* ``java.util.function.Supplier``
* ``java.util.function.UnaryOperator``
* ``java.util.jar.Attributes``
* ``java.util.jar.Attributes$Name``
* ``java.util.jar.InitManifest``
Expand Down
2 changes: 1 addition & 1 deletion docs/user/sbt.rst
Expand Up @@ -16,7 +16,7 @@ This generates the following files:

* ``project/plugins.sbt`` to add a plugin dependency::

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.7")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.8")

* ``project/build.properties`` to specify the sbt version::

Expand Down
2 changes: 1 addition & 1 deletion nir/src/main/scala/scala/scalanative/nir/Versions.scala
Expand Up @@ -25,5 +25,5 @@ object Versions {
final val revision: Int = 5

/* Current public release version of Scala Native. */
final val current: String = "0.3.8-SNAPSHOT"
final val current: String = "0.3.8"
}

0 comments on commit 365482e

Please sign in to comment.