Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tynanbe committed Feb 12, 2024
1 parent c085ba6 commit 8b0cc44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## v1.6.0 - 2024-02-12

- Shellout now supports `gleam_stdlib` v1.0.
- Shellout now requires Gleam v0.34 or later.
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,8 @@ pub fn main() {

• Add `shellout` to `gleam.toml`

```toml
[dependencies]
shellout = "~> 1.5"
```shell
gleam add shellout
```

### As a dependency of your Mix project
Expand All @@ -91,7 +90,7 @@ shellout = "~> 1.5"
```elixir
defp deps do
[
{:shellout, "~> 1.5"},
{:shellout, "~> 1.6"},
]
end
```
Expand All @@ -102,6 +101,6 @@ end

```erlang
{deps, [
{shellout, "1.5.0"}
{shellout, "1.6.0"}
]}.
```
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "shellout"
version = "1.6.0-dev"
version = "1.6.0"
description = "A Gleam library for cross-platform shell operations"
licences = ["Apache-2.0"]
gleam = ">= 0.34.0"
Expand Down

0 comments on commit 8b0cc44

Please sign in to comment.