diff --git a/CHANGELOG.md b/CHANGELOG.md index e3173371..9742b8f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.5.4] - TBD +## [1.5.4] - 2021-07-29 ### Added @@ -18,24 +18,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Ability to hide code cells when rendering Jupyter notebooks. -After setting up Connect and rsconnect-python, the user can render a Jupyter notebook without its corresponding code cells by passing the ' hide-all-input' flag through the rsconnect cli: +After setting up Connect (>=1.9.0) and rsconnect-python, the user can render a Jupyter notebook without its corresponding code cells by passing the ' hide-all-input' flag through the rsconnect cli: ``` rsconnect deploy notebook \ - -n server \ - -k APIKey \ + --server https://connect.example.org:3939 \ + --api-key my-api-key \ --hide-all-input \ - hello_world.ipynb + mynotebook.ipynb ``` To selectively hide the input of cells, the user can add a tag call 'hide_input' to the cell, then pass the ' hide-tagged-input' flag through the rsconnect cli: ``` rsconnect deploy notebook \ - -n server \ - -k APIKey \ + --server https://connect.example.org:3939 \ + --api-key my-api-key \ --hide-tagged-input \ - hello_world.ipynb + mynotebook.ipynb ``` ## [1.5.3] - 2021-05-06