diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a16f6892..165cbf92f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.11.0] - 2019-03-24 + +### Changed + + - Instruction `exists`: Replaces file type option with `FILE-MATCHER` + + E.g. `exists -file f.txt` is replaced by `exists f.txt : type file` + ## [0.10.0] - 2019-02-05 ### Added diff --git a/src/exactly_lib/program_info.py b/src/exactly_lib/program_info.py index 8da63431de..6bd074c103 100644 --- a/src/exactly_lib/program_info.py +++ b/src/exactly_lib/program_info.py @@ -1,5 +1,5 @@ PROGRAM_NAME = 'exactly' -VERSION = '0.10.0-PLUS' +VERSION = '0.11.0' PYTHON_INTERPRETER_WHICH_CAN_RUN_THIS_PROGRAM = 'The Python interpreter (Python >= 3.5).'