From 95f1b475d9029ccb14664c7f3411c3c147b19474 Mon Sep 17 00:00:00 2001 From: yoshoku Date: Sat, 26 Jun 2021 02:14:48 +0900 Subject: [PATCH] :up: Bump up version number to 0.2.0 --- CHANGELOG.md | 7 +++++++ lib/hanny/version.rb | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fc83623 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# 0.2.0 +- Add type declaration files. +- Refactor some codes with type check. +- Fix some configuration files. + +# 0.1.0 +- First release. diff --git a/lib/hanny/version.rb b/lib/hanny/version.rb index a44d04b..b245e85 100644 --- a/lib/hanny/version.rb +++ b/lib/hanny/version.rb @@ -2,6 +2,6 @@ # Hanny is a hash-based approximate nearest neighbor search library. module Hanny - # @!visibility private - VERSION = '0.1.0' + # The version of Hanny you are using. + VERSION = '0.2.0' end