-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fe1176
commit acc57a2
Showing
3 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
# Changelog | ||
|
||
## v0.2.0 | ||
|
||
* Fixes | ||
* `ExTTY` no longer defaults a `:name` option for GenServer start_link. | ||
If you relied on the default `ExTTY` name, you will need to pass that or | ||
a different name as the `:name` option explicitly and use it | ||
(or the returned pid of `ExTTY.start_link/1`) when calling the | ||
functions of `ExTTY`: | ||
|
||
```elixir | ||
# Named GenServer | ||
{:ok, _pid} = ExTTY.start_link(name: TTY1) | ||
ExTTY.send_text(TTY1, "1+1\n") | ||
|
||
# Unnamed GenServer | ||
{:ok, tty} = ExTTY.start_link() | ||
ExTTY.send_text(tty, "1+1\n") | ||
``` | ||
|
||
## v0.1.0 | ||
|
||
Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters