diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e6edd9c..c16b75b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [0.10.0] - (in progress) +## [0.10.0](https://github.com/asmaloney/gactar/releases/tag/v0.10.0) - 2022-07-07 ### Added @@ -46,10 +46,16 @@ All notable changes to this project will be documented in this file. The format - Replaced _partial_matching_ option from the **procedural** module with the _mismatch_penalty_ option for the **memory** module. Setting this turns on partial matching and sets the penalty in the activation equation to this value. ([#261](https://github.com/asmaloney/gactar/pull/261)) +- Updated web UI to vue 2.7.x. ([#272](https://github.com/asmaloney/gactar/pull/272)) + ### Fixed - Give proper error when trying to use an invalid type with `_status`. ([#242](https://github.com/asmaloney/gactar/pull/242)) +- Check for reserved chunk names. ([#271](https://github.com/asmaloney/gactar/pull/271)) + + The following names are reserved according to ACT-R: `busy`, `clear`, `empty`, `error`, `failure`, `free`, `full`, `requested`, and `unrequested` + ## [0.9.0](https://github.com/asmaloney/gactar/releases/tag/v0.9.0) - 2022-06-20 ### Added diff --git a/doc/amod Config.md b/doc/amod Config.md index c601798e..847eb2e3 100644 --- a/doc/amod Config.md +++ b/doc/amod Config.md @@ -13,10 +13,11 @@ gactar { } ``` -| Config | Type | Description | -| ----------------- | ------------------------------------------ | -------------------------------------- | -| log_level | string (one of 'min', 'info', or 'detail') | how verbose our logging should be | -| trace_activations | boolean | output detailed info about activations | +| Config | Type | Description | +| ----------------- | ------------------------------------------ | ---------------------------------------------------------------------------------------- | +| log_level | string (one of 'min', 'info', or 'detail') | how verbose our logging should be | +| trace_activations | boolean | output detailed info about activations | +| random_seed | positive integer | sets the seed to use for generating pseudo-random numbers (allows for reproducible runs) | ## Module Config diff --git a/doc/images/gactar-web.png b/doc/images/gactar-web.png index b99d9485..66363fff 100644 Binary files a/doc/images/gactar-web.png and b/doc/images/gactar-web.png differ