diff --git a/CHANGELOG.md b/CHANGELOG.md index ae4b951b0..1db1f4767 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,18 +12,18 @@ We appreciate your patience while we speedily work towards a stable release of t ### 0.62.116 (2024-04-26) -* Added a command-line interface for interacting with modal.Dict objects. Run modal dict --help in your terminal to see what is available. +* Added a command-line interface for interacting with `modal.Dict` objects. Run `modal queue --help` in your terminal to see what is available. ### 0.62.114 (2024-04-25) -* `Secret.from_dotenv` now accepts an optional filename keyword argument: - - ```python - @app.function(secrets=[modal.Secret.from_dotenv(filename=".env-dev")]) - def run(): - ... +* `Secret.from_dotenv` now accepts an optional filename keyword argument: + + ```python + @app.function(secrets=[modal.Secret.from_dotenv(filename=".env-dev")]) + def run(): + ... ```