From 5be3a5e68f573009eebd0c593eb3195f0fb6fc44 Mon Sep 17 00:00:00 2001
From: Anton Maminov <anton.linux@gmail.com>
Date: Fri, 20 Oct 2023 17:09:33 +0300
Subject: [PATCH 1/3] 2023

---
 LICENSE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/LICENSE b/LICENSE
index 244ebdb..7aca136 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2019-2022 Anton Maminov
+Copyright (c) 2019-2023 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

From 3a6be5c296d2fdb81d66f23edb377edd8c1eb2cc Mon Sep 17 00:00:00 2001
From: Anton Maminov <anton.linux@gmail.com>
Date: Fri, 20 Oct 2023 17:12:27 +0300
Subject: [PATCH 2/3] revert 233c6f1c6f349788c176945787b4cfb05e14fc44

---
 src/convex_hull/algorithm.cr | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/convex_hull/algorithm.cr b/src/convex_hull/algorithm.cr
index cf12cc9..0ba6986 100644
--- a/src/convex_hull/algorithm.cr
+++ b/src/convex_hull/algorithm.cr
@@ -3,7 +3,7 @@ module ConvexHull
     include Enumerable(Point)
     include Iterable(Point)
 
-    getter convex_hull : Array(Point)
+    @convex_hull : Array(Point)
 
     def initialize(points : Array(Tuple(Int32 | Float32 | Float64, Int32 | Float32 | Float64)))
       raise "There must be at least 3 points" if points.size < 3

From 95d798fc7067a9783d7308b563bf8dd643db82df Mon Sep 17 00:00:00 2001
From: Anton Maminov <anton.linux@gmail.com>
Date: Fri, 20 Oct 2023 17:13:24 +0300
Subject: [PATCH 3/3] v0.6.0

---
 shard.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shard.yml b/shard.yml
index e495402..f71ae34 100644
--- a/shard.yml
+++ b/shard.yml
@@ -1,5 +1,5 @@
 name: convex_hull
-version: 0.5.0
+version: 0.6.0
 
 authors:
   - Anton Maminov <anton.maminov@gmail.com>