Skip to content

Commit 73c76dc

Browse files
committed
Release v0.4.0
1 parent 1c1dc1a commit 73c76dc

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
The 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

923
Initial release.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Add Pythonx to your dependencies:
3131

3232
```elixir
3333
Mix.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
108108
def deps do
109109
[
110-
{:pythonx, "~> 0.3.0"}
110+
{:pythonx, "~> 0.4.0"}
111111
]
112112
end
113113
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ end
55
defmodule 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

0 commit comments

Comments
 (0)