From e9fefb3cc3f262b50905de7c04b43f2930bc44b7 Mon Sep 17 00:00:00 2001 From: Michael Wagner Date: Fri, 26 Jan 2024 14:20:05 -0500 Subject: [PATCH] release: bump version v0.2.3 --- README.md | 1 + shard.yml | 2 +- src/nox.cr | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3411f8e..76469e9 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ The reason for its existence is so that [Lucky](https://luckyframework.org/) can dependencies: nox: github: matthewmcgarvey/nox + version: ">= 0.2.0, < 0.3.0" ``` 2. Run `shards install` diff --git a/shard.yml b/shard.yml index 7a17a03..1b9ef15 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: nox -version: 0.2.2 +version: 0.2.3 authors: - matthewmcgarvey diff --git a/src/nox.cr b/src/nox.cr index 7260f5c..719289f 100644 --- a/src/nox.cr +++ b/src/nox.cr @@ -5,7 +5,7 @@ require "./nox/process" require "./nox/runner" module Nox - VERSION = "0.2.2" + VERSION = "0.2.3" def self.run(file : String) procfile = Nox::Procfile.parse_file(file)