From 516728c353a11c1dd6afa0c8a104e88921f226f8 Mon Sep 17 00:00:00 2001 From: tynanbe Date: Mon, 29 May 2023 09:21:41 -0500 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 2 +- README.md | 6 +++--- gleam.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0da965..a3f2506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v1.3.0 - 2023-05-29 - Shellout now requires Gleam v0.29 or later. - Shellout now supports `gleam_stdlib` v0.28. diff --git a/README.md b/README.md index 4d5c290..f712a5f 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ pub fn main() { ```toml [dependencies] -shellout = "~> 1.2" +shellout = "~> 1.3" ``` ### As a dependency of your Mix project @@ -93,7 +93,7 @@ shellout = "~> 1.2" ```elixir defp deps do [ - {:shellout, "~> 1.2"}, + {:shellout, "~> 1.3"}, ] end ``` @@ -104,6 +104,6 @@ end ```erlang {deps, [ - {shellout, "1.2.0"} + {shellout, "1.3.0"} ]}. ``` diff --git a/gleam.toml b/gleam.toml index 3895593..c2fd841 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,5 +1,5 @@ name = "shellout" -version = "1.3.0-dev" +version = "1.3.0" description = "A Gleam library for cross-platform shell operations" licences = ["Apache-2.0"]