diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fea1abd55..44be7ff454 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ Copy and pasting the git commit messages is __NOT__ enough. ## [Unreleased] ### Added +### Changed +### Deprecated +### Fixed +### Removed +### Security + +## [1.2.0] # 2023-06-14 +### Added - `visdom` can now be configured through the engine.ini configuration file `visdom:enabled`, `visdom:hostname`, and `visdom:port` (environment variables `SMARTS_VISDOM_ENABLED`, `SMARTS_VISDOM_HOSTNAME`, `SMARTS_VISDOM_PORT`.) - Added an install extra that installs the requirements for all optional modules. Use `pip install .[all]`. - Added `Condition`, `ConditionRequires`, `ConditionState` and various condition implementations to enable logical operations in scenarios. diff --git a/setup.cfg b/setup.cfg index 2364a6b99c..13a02840d7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = smarts -version = 1.1.0 +version = 1.2.0 url = https://github.com/huawei-noah/SMARTS long_description = file:README.md long_description_content_type = text/markdown diff --git a/zoo/policies/rl-agent/rl_agent/__init__.py b/zoo/policies/rl-agent/rl_agent/__init__.py index a8e540fcf5..0841f3e6e4 100644 --- a/zoo/policies/rl-agent/rl_agent/__init__.py +++ b/zoo/policies/rl-agent/rl_agent/__init__.py @@ -11,7 +11,7 @@ get_observation_adapter, ) -VERSION = "1.1.0" +VERSION = "1.2.0" try: from smarts.zoo.agent_spec import AgentSpec