Skip to content

Releases: artyom-poptsov/guile-ics

v0.6.0

04 Feb 11:17
v0.6.0
febffd8
Compare
Choose a tag to compare

Table of Contents

  1. Changes in version 0.6.0 (2024-02-04)
    1. Fix the content line parser:BUGFIX:API_CHANGE:
    2. Fix uninstall script to work with different Guile versions:BUGFIX:
    3. Compilation does not rely on "which" command anymore
    4. guix.scm
      1. Add "texlive" to inputs
      2. Fix cross-compilation
    5. Update the documentation
    6. Add/update tests

Changes in version 0.6.0 (2024-02-04)

Fix the content line parser :BUGFIX:API_CHANGE:

Guile-ICS would throw an error when handling multiple instances of the same
property parameter in one content line. According to RFC 6350 multiple instances
of the same parameter in a content line should be read as multiple values for
the same parameter (in the same way as the RFC specifies the value lists.)

Now this error should be fixed.

Reported by Felix Lechner in
#1

Fix uninstall script to work with different Guile versions :BUGFIX:

Now the "make uninstall" command uses actual Guile version instead of hardcoded
"3.0" value.

Compilation does not rely on "which" command anymore

The compilation process of the Scheme code does not depend on "which" command
anymore.

guix.scm

Add "texlive" to inputs

Fix cross-compilation

Update the documentation

Add/update tests