Skip to content

v0.5.3

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Sep 08:24
· 3308 commits to main since this release

Added

  • Warnings are now generally treated as errors when compiling Acton components
    #153
    • Many warnings have been fixed.
    • There are some exceptions added for some warnings.
      • With time these should be reduced.
  • Bug triage and prioritization document
    #165
    • see docs/triage.md

Fixed

  • Fix internal instantiations of tuples to use $NEWTUPLE
    #173
    • For example functions like divmod that returns a tuple was using an
      incorrect macro.
  • divmod now returns correct results. (#))
    • It would previously return wildly incorrect results (integer wraparound
      style) and could lead to segfaults due to incorrect tuple creation
  • Greater than or equal (>=) now works for integers
    #161
    • It was broken and actually did an equal match.
  • Fix header inclusion for numpy use of arc4random functions
    #155
  • Situations where actonc was unable to unify atoms and ints or infer type
    conversion have now been fixed.
    #183
  • Fix variable being out of scope in a function
    #174