From 1021177fd84df547fa7644bae4aa99f7df575c56 Mon Sep 17 00:00:00 2001 From: Jeremy Woertink Date: Fri, 2 Apr 2021 09:08:01 -0700 Subject: [PATCH] Bump versions for next release. Doesn't matter much, but also added the VERSION constant for consistency (#12) --- shard.yml | 2 +- src/wordsmith.cr | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/shard.yml b/shard.yml index 30320ca..4703311 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: wordsmith -version: 0.2.1 +version: 0.2.2 authors: - Paul Smith diff --git a/src/wordsmith.cr b/src/wordsmith.cr index b086e91..6bea102 100644 --- a/src/wordsmith.cr +++ b/src/wordsmith.cr @@ -1,2 +1,6 @@ require "./wordsmith/**" require "./wordsmith/inflector/**" + +module Wordsmith + VERSION = "0.2.2" +end