Skip to content

Releases: higepon/mosh

rmosh 0.0.1

01 Apr 09:00
b388278
Compare
Choose a tag to compare
rmosh 0.0.1 Pre-release
Pre-release

Mosh 0.2.9 Release Note

About This Release

Minor release to fix some bugs.

Known issues

  • nmosh does not support R7RS libraries

Changes

  • Libraries:
    • Now we can handle library name with unicode character in it such as (mylib λ).

Bug fixes

mosh-0.2.9-rc1

03 Dec 07:36
Compare
Choose a tag to compare

Mosh 0.2.9 Release Note

About This Release

Minor release to fix some bugs.

Known issues

  • nmosh does not support R7RS libraries

Changes

  • Libraries:
    • Now we can handle library name with unicode character in it such as (mylib λ).

Bug fixes

mosh-0.2.8

13 Nov 22:50
Compare
Choose a tag to compare

Mosh 0.2.8 Release Note

About This Release

Minor release to support M1 mac.

Known issues

  • nmosh does not support R7RS libraries

Changes

  • R7RS (Experimental)

    • Support R7RS small + (scheme vector) library.
    • Mosh passes 1200/1210 tests in r7rs-tests.scm from Chibi Scheme.
    • To demonstrate R7RS comformance, we wrote MNIST demo in R7RS. It works both with Gauche and Mosh.
    • Mosh can run all ecraven/r7rs-benchmarks.
  • Platform:

    • macOS:
      • Added native support for M1 Mac (except FFI).
  • Build system:

    • Now configure script relies pkg-config to detect and link against
      system libraries
    • CMake build now require CMake 3.0 or later.
  • Libraries:

    • Added SRFI 133, 158 and 194 support.
    • Added SRFI 176 support. Huge thanks to Lassi Kortela.
  • Heap:

    • Updated Boehm GC to the latest.
  • nmosh:

    • nmosh now uses shortened filename for cache/debug-info. The shortened
      filename will be prefixed with "@"(at).
  • TinyCLOS:

    • A bool value next-method? available within method definition. See
      Issue 216 for details.
  • Added --optimize-level commandline option.

  • Fixnum

    • Now Mosh has 62 bits size Fixnum in 64bits architectures.
  • f64array

    • To support faster matrix operations. We introduced f64array which is 2D matrix of double.

Bug fixes

  • Build system:

    • (mosh mysql) and (mosh config) was not installed properly.
  • Reader:

    • Fixed Issue 221 reported and patched by David Banks:
      • "."(period) was not treated as a delimiter. For example, "#t.#f"
        read as #t.
  • VM:

    • VM Compiler error "[internal error] iform-count-size-upto: unknown
      iform tag:13" was fixed.
  • Core:

    • Fixed Issue 215 reported by mrc.mgg:

      • finite? and flfinite? were returned #t for NaNs.
    • Fixed Issue 217 reported by David Banks:

      • eqv? was returned #t for (eqv? 4.0 4)
    • Various procedures fixed for returning correct exact/inexact value.

    • Fixed Issue 224 reported by David Banks:

      • hashtable-ref could cause segfaults.
    • Bytevector buffer port opened by open-bytevector-output-port was broken
      when the value outputted multiple times.

    • Fixed some compiler optimization issues.

    • Fixed equal.

  • R6RS:

    • Fixed vector-map problem reported by Eduardo Cavazos:
      • vector-map was not handle correctly when given procedure returned
        multiple times. Now vector-map defined as vector variant of R6RS
        map.
  • file-executable?

    • file-executable? now always returns #f in Windows platform.
      See #65.

mosh-0.2.8-rc8

06 Nov 11:02
Compare
Choose a tag to compare

Mosh 0.2.8 Release Note

About This Release

Minor release to support M1 mac.

Known issues

  • nmosh do not support R7RS libraries

Changes

  • Platform:

    • macOS:
      • Added native support for M1 Mac (except FFI)
  • Build system:

    • Now configure script relies pkg-config to detect and link against
      system libraries
    • CMake build now require CMake 3.0 or later
  • Command line:

    • Added SRFI 133, 158 and 194 support.
    • Added SRFI 176 support. Huge thanks to Lassi Kortela.
  • Heap:

    • Updated Boehm GC to the latest.
  • nmosh:

    • nmosh now uses shortened filename for cache/debug-info. The shortened
      filename will be prefixed with "@"(at).
  • TinyCLOS:

    • A bool value next-method? available within method definition. See
      Issue 216 for details.
  • R7RS (Experimental)

    • Support R7RS small + (scheme vector) library.
    • Mosh passes 1200/1210 tests in r7rs-tests.scm from Chibi Scheme.
    • To demonstrate R7RS comformance, we write MNIST demo in R7RS. It works both with Gauche and Mosh.
  • Fixnum

    • Now Mosh has 62bits size Fixnum in 64bits architectures.
  • f64array

    • To support faster matrix operations. We introduced f64array which is 2D matrix of double.

Bug fixes

  • Build system:

    • (mosh mysql) and (mosh config) was not installed properly.
  • Reader:

    • Fixed Issue 221 reported and patched by David Banks:
      • "."(period) was not treated as a delimiter. For example, "#t.#f"
        read as #t.
  • VM:

  • VM Compiler error "[internal error] iform-count-size-upto: unknown
    iform tag:13" was fixed.

  • Core:

    • Fixed Issue 215 reported by mrc.mgg:

      • finite? and flfinite? were returned #t for NaNs.
    • Fixed Issue 217 reported by David Banks:

      • eqv? was returned #t for (eqv? 4.0 4)
    • Various procedures fixed for returning correct exact/inexact value.

    • Fixed Issue 224 reported by David Banks:

      • hashtable-ref could cause segfaults.
    • Bytevector buffer port opened by open-bytevector-output-port was broken
      when the value outputted multiple times.

    • Fixed some compiler optimization issues.

    • Fixed equal.

  • R6RS:

    • Fixed vector-map problem reported by Eduardo Cavazos:
      • vector-map was not handle correctly when given procedure returned
        multiple times. Now vector-map defined as vector variant of R6RS
        map.
  • file-executable?

    • file-executable? now always returns #f in Windows platform.
      See #65.

mosh-0.2.8-rc7

30 Oct 06:51
Compare
Choose a tag to compare

Mosh 0.2.8 Release Note

About This Release

Minor release to support M1 mac.

Known issues

  • nmosh do not support R7RS libraries

Changes

  • Platform:

    • macOS:
      • Added native support for M1 Mac (except FFI)
  • Build system:

    • Now configure script relies pkg-config to detect and link against
      system libraries
    • CMake build now require CMake 3.0 or later
  • Command line:

    • Added SRFI 133, 158 and 194 support.
    • Added SRFI 176 support. Huge thanks to Lassi Kortela.
  • Heap:

    • Updated Boehm GC to the latest.
  • nmosh:

    • nmosh now uses shortened filename for cache/debug-info. The shortened
      filename will be prefixed with "@"(at).
  • TinyCLOS:

    • A bool value next-method? available within method definition. See
      Issue 216 for details.
  • R7RS (Experimental)

    • Support R7RS small + (scheme vector) library.
    • Mosh passes 1200/1210 tests in r7rs-tests.scm from Chibi Scheme.
    • To demonstrate R7RS comformance, we write MNIST demo in R7RS. It works both with Gauche and Mosh.
  • f64array

    • To support faster matrix operations. We introduced f64array which is 2D matrix of double.

Bug fixes

  • Build system:

    • (mosh mysql) and (mosh config) was not installed properly.
  • Reader:

    • Fixed Issue 221 reported and patched by David Banks:
      • "."(period) was not treated as a delimiter. For example, "#t.#f"
        read as #t.
  • VM:

  • VM Compiler error "[internal error] iform-count-size-upto: unknown
    iform tag:13" was fixed.

  • Core:

    • Fixed Issue 215 reported by mrc.mgg:

      • finite? and flfinite? were returned #t for NaNs.
    • Fixed Issue 217 reported by David Banks:

      • eqv? was returned #t for (eqv? 4.0 4)
    • Various procedures fixed for returning correct exact/inexact value.

    • Fixed Issue 224 reported by David Banks:

      • hashtable-ref could cause segfaults.
    • Bytevector buffer port opened by open-bytevector-output-port was broken
      when the value outputted multiple times.

    • Fixed some compiler optimization issues.

    • Fixed equal.

  • R6RS:

    • Fixed vector-map problem reported by Eduardo Cavazos:
      • vector-map was not handle correctly when given procedure returned
        multiple times. Now vector-map defined as vector variant of R6RS
        map.
  • file-executable?

    • file-executable? now always returns #f in Windows platform.
      See #65.

mosh-0.2.8-rc6

21 Oct 11:22
Compare
Choose a tag to compare

Mosh 0.2.8 Release Note

About This Release

Minor release to support M1 mac.

Known issues

  • nmosh do not support R7RS libraries

Changes

  • Platform:

    • macOS:
      • Added native support for M1 Mac (except FFI)
  • Build system:

    • Now configure script relies pkg-config to detect and link against
      system libraries
    • CMake build now require CMake 3.0 or later
  • Command line:

    • Added SRFI 133, 158 and 194 support.
    • Added SRFI 176 support. Huge thanks to Lassi Kortela.
  • Heap:

    • Updated Boehm GC to the latest.
  • nmosh:

    • nmosh now uses shortened filename for cache/debug-info. The shortened
      filename will be prefixed with "@"(at).
  • TinyCLOS:

    • A bool value next-method? available within method definition. See
      Issue 216 for details.
  • R7RS (Experimental)

    • Support R7RS small + (scheme vector) library.
    • Mosh passes 1200/1210 tests in r7rs-tests.scm from Chibi Scheme.
    • To demonstrate R7RS comformance, we write MNIST demo in R7RS. It works both with Gauche and Mosh.
  • f64array

    • To support faster matrix operations. We introduced f64array which is 2D matrix of double.

Bug fixes

  • Build system:

    • (mosh mysql) and (mosh config) was not installed properly.
  • Reader:

    • Fixed Issue 221 reported and patched by David Banks:
      • "."(period) was not treated as a delimiter. For example, "#t.#f"
        read as #t.
  • VM:

  • VM Compiler error "[internal error] iform-count-size-upto: unknown
    iform tag:13" was fixed.

  • Core:

    • Fixed Issue 215 reported by mrc.mgg:

      • finite? and flfinite? were returned #t for NaNs.
    • Fixed Issue 217 reported by David Banks:

      • eqv? was returned #t for (eqv? 4.0 4)
    • Various procedures fixed for returning correct exact/inexact value.

    • Fixed Issue 224 reported by David Banks:

      • hashtable-ref could cause segfaults.
    • Bytevector buffer port opened by open-bytevector-output-port was broken
      when the value outputted multiple times.

  • R6RS:

    • Fixed vector-map problem reported by Eduardo Cavazos:
      • vector-map was not handle correctly when given procedure returned
        multiple times. Now vector-map defined as vector variant of R6RS
        map.
  • file-executable?

    • file-executable? now always returns #f in Windows platform.
      See #65.

mosh-0.2.8-rc5

02 Oct 00:25
Compare
Choose a tag to compare

Mosh 0.2.8 Release Note

About This Release

Minor release to support M1 mac.

Known issues

  • nmosh do not support R7RS libraries

Changes

  • Platform:

    • macOS:
      • Added native support for M1 Mac (except FFI)
  • Build system:

    • Now configure script relies pkg-config to detect and link against
      system libraries
    • CMake build now require CMake 3.0 or later
  • Command line:

    • Added SRFI 176 support. Huge thanks to Lassi Kortela.
  • Heap:

    • Updated Boehm GC to the latest.
  • nmosh:

    • nmosh now uses shortened filename for cache/debug-info. The shortened
      filename will be prefixed with "@"(at).
  • TinyCLOS:

    • A bool value next-method? available within method definition. See
      Issue 216 for details.

Bug fixes

  • Build system:

    • (mosh mysql) and (mosh config) was not installed properly.
  • Reader:

    • Fixed Issue 221 reported and patched by David Banks:
      • "."(period) was not treated as a delimiter. For example, "#t.#f"
        read as #t.
  • VM:

  • VM Compiler error "[internal error] iform-count-size-upto: unknown
    iform tag:13" was fixed.

  • Core:

    • Fixed Issue 215 reported by mrc.mgg:

      • finite? and flfinite? were returned #t for NaNs.
    • Fixed Issue 217 reported by David Banks:

      • eqv? was returned #t for (eqv? 4.0 4)
    • Various procedures fixed for returning correct exact/inexact value.

    • Fixed Issue 224 reported by David Banks:

      • hashtable-ref could cause segfaults.
    • Bytevector buffer port opened by open-bytevector-output-port was broken
      when the value outputted multiple times.

  • R6RS:

    • Fixed vector-map problem reported by Eduardo Cavazos:
      • vector-map was not handle correctly when given procedure returned
        multiple times. Now vector-map defined as vector variant of R6RS
        map.

mosh-0.2.8-rc4

09 Sep 08:23
Compare
Choose a tag to compare

Mosh 0.2.8 Release Note

What's Mosh

Mosh is A Fast R6RS Scheme interpreter.

Homepage:
http://mosh.monaos.org/

Reference Manual:
http://mosh.monaos.org/

Developed by:
Higepon, OKUMURA Yuki kokosabu and herumi.

About This Release

Minor release to support M1 mac.

  • Added SRFI 176 support. Huge thanks to Lassi Kortela.
  • extlib/: Updated Boehm GC to the latest.

mosh-0.2.8-rc3

28 Aug 00:01
f2ad396
Compare
Choose a tag to compare
mosh-0.2.8-rc3

mosh-0.2.8-rc2

19 Aug 07:10
76b5937
Compare
Choose a tag to compare
mosh-0.2.8-rc2