aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hall <hallmatthew314@gmail.com>2023-04-07 16:45:17 +1200
committerMatthew Hall <hallmatthew314@gmail.com>2023-04-07 16:45:17 +1200
commit4de0b6cb0c17ad169a09f09274185a13386ebb08 (patch)
tree272785fd759c4e7608f5f6f7cce14c5eab87b651
parentd28ebb20acd6cb5f2f9cc81c002a90ae249348df (diff)
Change version number to 0.3.0HEADstring-parsersmasterdev
-rw-r--r--shard.yml2
-rw-r--r--src/parcom.cr2
2 files changed, 2 insertions, 2 deletions
diff --git a/shard.yml b/shard.yml
index 7f5cc3d..ab3b90a 100644
--- a/shard.yml
+++ b/shard.yml
@@ -1,5 +1,5 @@
name: parcom
-version: 0.2.0
+version: 0.3.0
description: Simple parser combinator library with a dumb name
diff --git a/src/parcom.cr b/src/parcom.cr
index 60b8df0..5bb6aee 100644
--- a/src/parcom.cr
+++ b/src/parcom.cr
@@ -1,7 +1,7 @@
require "./parcom/*"
module Parcom
- VERSION = "0.2.0"
+ VERSION = "0.3.0"
# A ParserFail exception should be raised by `Parser#parse` when
# a parse attempt is unsuccessful.