From 3722ffdb5de6c26d38114e98cfdd5ee3e3f85c6f Mon Sep 17 00:00:00 2001 From: Anton Maminov Date: Sat, 16 Jan 2021 18:36:33 +0200 Subject: [PATCH] v0.2.1 --- LICENSE | 2 +- shard.yml | 2 +- src/convex_hull.cr | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 8e60724..c5ded66 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2019 Anton Maminov +Copyright (c) 2019-2021 Anton Maminov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/shard.yml b/shard.yml index e4eff3d..aa56bff 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: convex_hull -version: 0.2.0 +version: 0.2.1 authors: - Anton Maminov diff --git a/src/convex_hull.cr b/src/convex_hull.cr index 13603b2..4ce9512 100644 --- a/src/convex_hull.cr +++ b/src/convex_hull.cr @@ -3,7 +3,7 @@ require "./convex_hull/jarvis_march" require "./convex_hull/graham_scan" module ConvexHull - VERSION = "0.2.0" + VERSION = {{ `shards version #{__DIR__}`.chomp.stringify }} alias Number = Int32 | Float32 | Float64 end