mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-19 01:46:19 +08:00
Release 0.5.2 (#946)
This commit is contained in:
parent
7fc8f24d2c
commit
b728d9deba
2 changed files with 29 additions and 3 deletions
26
CHANGELOG.md
26
CHANGELOG.md
|
@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## [v0.5.2](https://github.com/livebook-dev/livebook/tree/v0.5.1) (2022-01-27)
|
||||
|
||||
### Added
|
||||
|
||||
- Allowed Livebook port to be set to 0 for a random port ([#906](https://github.com/livebook-dev/livebook/pull/906))
|
||||
- Added memory usage information to runtime panel and sessions list ([#898](https://github.com/livebook-dev/livebook/pull/898), [#917](https://github.com/livebook-dev/livebook/pull/917) and [#918](https://github.com/livebook-dev/livebook/pull/918))
|
||||
- Added support for font-awesome in mermaid.js diagrams ([#913](https://github.com/livebook-dev/livebook/pull/913))
|
||||
- Support for reopening the desktop app ([#928](https://github.com/livebook-dev/livebook/pull/928))
|
||||
- Added a warning when copying to clipboard fails ([#922](https://github.com/livebook-dev/livebook/pull/922))
|
||||
|
||||
### Changed
|
||||
|
||||
- App icon on macOS to look more native ([#924](https://github.com/livebook-dev/livebook/pull/924))
|
||||
- Improved errors formatting ([#926](https://github.com/livebook-dev/livebook/pull/926))
|
||||
- Improved intellisense to work while code is evaluating ([#941](https://github.com/livebook-dev/livebook/pull/941))
|
||||
- Updated the release to run in interactive mode, hence using less memory ([#944](https://github.com/livebook-dev/livebook/pull/944))
|
||||
- Updated the release to use a random cookie on every startup ([#944](https://github.com/livebook-dev/livebook/pull/944))
|
||||
|
||||
### Fixed
|
||||
|
||||
- Favicon rendering in Safari ([#920](https://github.com/livebook-dev/livebook/pull/920))
|
||||
- Fixed code evaluation in the desktop app to work without Elixir installed globally ([929](https://github.com/livebook-dev/livebook/pull/929))
|
||||
- Fixed line break support in Mermaid diagram definition ([932](https://github.com/livebook-dev/livebook/pull/932))
|
||||
- Improved error handling in case of erroneous implementations of the `Inspect` protocol ([934](https://github.com/livebook-dev/livebook/pull/934))
|
||||
- Fixed image insertion in Markdown cells when the image name includes special characters ([945](https://github.com/livebook-dev/livebook/pull/945))
|
||||
|
||||
## [v0.5.1](https://github.com/livebook-dev/livebook/tree/v0.5.1) (2022-01-20)
|
||||
|
||||
### Changed
|
||||
|
|
6
mix.exs
6
mix.exs
|
@ -2,8 +2,8 @@ defmodule Livebook.MixProject do
|
|||
use Mix.Project
|
||||
|
||||
@elixir_requirement "~> 1.13"
|
||||
@elixir_app_version "1.13.2"
|
||||
@version "0.5.1"
|
||||
@app_elixir_version "1.13.2"
|
||||
@version "0.5.2"
|
||||
@description "Interactive and collaborative code notebooks - made with Phoenix LiveView"
|
||||
|
||||
def project do
|
||||
|
@ -156,7 +156,7 @@ defmodule Livebook.MixProject do
|
|||
|
||||
release
|
||||
|> Standalone.copy_erlang()
|
||||
|> Standalone.copy_elixir(@elixir_app_version)
|
||||
|> Standalone.copy_elixir(@app_elixir_version)
|
||||
end
|
||||
|
||||
@app_options [
|
||||
|
|
Loading…
Add table
Reference in a new issue