mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-20 21:04:17 +08:00
Update changelog
This commit is contained in:
parent
cf7ad7f17a
commit
195bc502fd
2 changed files with 3 additions and 2 deletions
|
@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
- Fixed the "evaluate all" shortcut to work when a cells is evaluating ([#1334](https://github.com/livebook-dev/livebook/pull/1334))
|
||||
- Source corruption when adding dependencies on Windows ([#1337](https://github.com/livebook-dev/livebook/pull/1337))
|
||||
- Failure when changing file system from S3 to local ([#1377](https://github.com/livebook-dev/livebook/pull/1377))
|
||||
- Evaluator to wait for garbage collected processes to terminate before next evaluation ([#1385](https://github.com/livebook-dev/livebook/pull/1385))
|
||||
- Fixed unnecessary vertical whitespace in Mermaid graphs ([#1415](https://github.com/livebook-dev/livebook/pull/1415))
|
||||
- Started ignoring non-Livebook logs in the Attached runtime ([#1451](https://github.com/livebook-dev/livebook/pull/1451))
|
||||
|
|
|
@ -12,7 +12,7 @@ defmodule Livebook.Settings do
|
|||
@typedoc """
|
||||
An id that is used for filesystem's manipulation, either insertion or removal.
|
||||
"""
|
||||
@type file_system_id :: :local | String.t()
|
||||
@type file_system_id :: String.t()
|
||||
|
||||
@doc """
|
||||
Returns the current autosave path.
|
||||
|
@ -52,7 +52,7 @@ defmodule Livebook.Settings do
|
|||
@doc """
|
||||
Returns all known filesystems with their associated ids.
|
||||
|
||||
In case of the local filesystem the id resolves to `:local` atom.
|
||||
In case of the local filesystem the id resolves to `"local"`.
|
||||
"""
|
||||
@spec file_systems() :: [{file_system_id(), Filesystem.t()}]
|
||||
def file_systems() do
|
||||
|
|
Loading…
Reference in a new issue