Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.43 KB

CHANGELOG.md

File metadata and controls

52 lines (37 loc) · 1.43 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.


0.6.0 - 2024-12-28

  • Upgrade to parol 2.0

0.5.0 - 2024-09-19

  • Upgrade to parol 1.0
  • Fix new clippy warning

0.4.0 - 2023-11-09

  • The binary tool now supports direct input of expression as string.
    raa_tt -s "(a & a -> b) -> b" -q
  • The binary tool now supports command line help by featuring clap command line parser.
    raa_tt -h
  • The binary tool can now additionally generate truth tables. This is only for reference reasons since many available tools understand or generate truth tables. The limit for the number of variables for which a truth table can be generated is currently deliberately set to 16.
    raa_tt -s "(a & a -> b) -> b" -q -t

0.3.0 - 2023-11-05

  • Changed name of binary tool to raa_tt.
  • Hopefully fixed problem running cargo doc on doc.rs's readonly file system

0.2.0 - 2023-11-05

  • Grammar supports an arbitrary number of propositions.
  • Add more examples to test.txt
  • Add integration tests
  • Improved naming and better English - hopefully 😉
  • Add generated files to source control to prevent warnings during packaging

0.1.0 - 2023-11-01

  • Basic algorithm
  • Grammar supports only one proposition at once.