Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add port_from_dynamic #68

Merged
merged 9 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- The `gleam/otp/static_supervisor` module has been added, containing bindings
to Erlang/OTP's supervisor module.
- `Port` type has been deprecated in favour of the `gleam_erlang`
package `Port` type.

## v0.10.0 - 2024-03-11

Expand Down
3 changes: 3 additions & 0 deletions src/gleam/otp/port.gleam
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/// Deprecated: Use gleam_erlang Port instead.
///
/// Ports are how code running on the Erlang virtual machine interacts with
/// the outside world. Bytes of data can be sent to and read from ports,
/// providing a form of message passing to an external program or resource.
Expand All @@ -6,4 +8,5 @@
///
/// [1]: https://erlang.org/doc/reference_manual/ports.html
///
@deprecated("Use gleam_erlang Port instead")
pub type Port
Loading