diff --git a/CHANGELOG.md b/CHANGELOG.md index d8d3c73b..bfc2ea98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ For a list of breaking changes, check [here](#breaking-changes) ## Unreleased +... + +## v0.2.6 + - Use `IllegalArgumentException` in case when providing duplicate dispatch values - Improve error message when protocol not found for class - `thread-bound?` predicate [#560](https://github.com/borkdude/sci/issues/560) diff --git a/doc/codox/index.html b/doc/codox/index.html index 3c1b711a..17b82baf 100644 --- a/doc/codox/index.html +++ b/doc/codox/index.html @@ -1,3 +1,3 @@ -Sci 0.2.6-SNAPSHOT

Sci 0.2.6-SNAPSHOT

Released under the Eclipse Public License 1.0

Small Clojure Interpreter.

Installation

To install, add the following dependency to your project or build file:

[borkdude/sci "0.2.6-SNAPSHOT"]

Topics

Namespaces

sci.core

sci.lang

Public variables and functions:

    \ No newline at end of file +Sci 0.2.6

    Sci 0.2.6

    Released under the Eclipse Public License 1.0

    Small Clojure Interpreter.

    Installation

    To install, add the following dependency to your project or build file:

    [borkdude/sci "0.2.6"]

    Topics

    Namespaces

    sci.core

    sci.lang

    Public variables and functions:

      \ No newline at end of file diff --git a/doc/codox/libsci.html b/doc/codox/libsci.html index 6dcbaac7..089c2f47 100644 --- a/doc/codox/libsci.html +++ b/doc/codox/libsci.html @@ -1,6 +1,6 @@ -Libsci

      Libsci

      +Libsci

      Libsci

      Table of contents: - Libsci - Prerequisites - Walkthrough - Compiling sci as shared library - Using libsci from C++ - Using libsci from Rust - Using libsci from Python - References

      To use sci as a shared library from e.g. C++, follow along with this tutorial. We illustrate what is happening when you run the script libsci/compile-libsci and libsci/compile-cpp.

      There are also instructions at the end for using the shared library from Python using ctypes.

      diff --git a/doc/codox/sci.core.html b/doc/codox/sci.core.html index f4b91ee9..f8162912 100644 --- a/doc/codox/sci.core.html +++ b/doc/codox/sci.core.html @@ -1,6 +1,6 @@ -sci.core documentation

      sci.core

      *1

      *2

      *3

      *e

      alter-var-root

      (alter-var-root v f & args)
      Atomically alters the root binding of sci var v by applying f to its
      +sci.core documentation

      sci.core

      *1

      *2

      *3

      *e

      alter-var-root

      (alter-var-root v f & args)
      Atomically alters the root binding of sci var v by applying f to its
       current value plus any args.

      binding

      macro

      (binding bindings & body)
      Macro for binding sci vars. Must be called with a vector of sci
       dynamic vars to values.

      copy-var

      macro

      (copy-var sym ns)
      Copies contents from var `sym` to a new sci var. The value `ns` is an
       object created with `sci.core/create-ns`.

      create-ns

      (create-ns sym)(create-ns sym meta)
      Creates namespace object. Can be used in var metadata.
      diff --git a/doc/codox/sci.lang.html b/doc/codox/sci.lang.html
      index 297e3105..edbde2da 100644
      --- a/doc/codox/sci.lang.html
      +++ b/doc/codox/sci.lang.html
      @@ -1,3 +1,3 @@
       
      -sci.lang documentation

      sci.lang

      \ No newline at end of file +sci.lang documentation

      sci.lang

      \ No newline at end of file diff --git a/resources/SCI_VERSION b/resources/SCI_VERSION index 34fd3aea..a53741c0 100644 --- a/resources/SCI_VERSION +++ b/resources/SCI_VERSION @@ -1 +1 @@ -0.2.6-SNAPSHOT +0.2.6 \ No newline at end of file