File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## [ v0.4.0] ( https://github.com/livebook-dev/pythonx/tree/v0.4.0 ) (2025-02-21)
8+
9+ ### Added
10+
11+ * Options to ` Pythonx.eval/3 ` for customizing stdout and stderr destination ([ #5 ] ( https://github.com/livebook-dev/pythonx/pull/5 ) )
12+
13+ ### Removed
14+
15+ * Removed ` Pythonx.init/3 ` in favour of always using ` Pythonx.uv_init/2 ` ([ #4 ] ( https://github.com/livebook-dev/pythonx/pull/4 ) )
16+
17+ ### Fixed
18+
19+ * ` sys.executable ` to point to a Python executable, instead of the BEAM one ([ #4 ] ( https://github.com/livebook-dev/pythonx/pull/4 ) )
20+
721## [ v0.3.0] ( https://github.com/livebook-dev/pythonx/tree/v0.3.0 ) (2025-02-19)
822
923Initial release.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Add Pythonx to your dependencies:
3131
3232``` elixir
3333Mix .install ([
34- {:pythonx , " ~> 0.3 .0" }
34+ {:pythonx , " ~> 0.4 .0" }
3535])
3636```
3737
@@ -107,7 +107,7 @@ Add Pythonx to your dependencies:
107107``` elixir
108108def deps do
109109 [
110- {:pythonx , " ~> 0.3 .0" }
110+ {:pythonx , " ~> 0.4 .0" }
111111 ]
112112end
113113```
Original file line number Diff line number Diff line change 55defmodule Pythonx.MixProject do
66 use Mix.Project
77
8- @ version "0.3.1-dev "
8+ @ version "0.4.0 "
99 @ description "Python interpreter embedded in Elixir"
1010 @ github_url "https://github.com/livebook-dev/pythonx"
1111
You can’t perform that action at this time.
0 commit comments