You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
7
8
-
## [1.5.4] - TBD
8
+
## [1.5.4] - 2021-07-29
9
9
10
10
### Added
11
11
@@ -18,24 +18,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
18
19
19
- Ability to hide code cells when rendering Jupyter notebooks.
20
20
21
-
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:
21
+
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:
22
22
23
23
```
24
24
rsconnect deploy notebook \
25
-
-n server \
26
-
-k APIKey \
25
+
--server https://connect.example.org:3939 \
26
+
--api-key my-api-key \
27
27
--hide-all-input \
28
-
hello_world.ipynb
28
+
mynotebook.ipynb
29
29
```
30
30
31
31
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:
0 commit comments