From 8e4313820575a92c714440509b3c6f38dfa19c5b Mon Sep 17 00:00:00 2001 From: Peter Suschlik Date: Mon, 9 Jan 2017 09:58:55 +0100 Subject: [PATCH] Release v0.2.0 --- README.md | 4 ++-- shard.yml | 2 +- src/hashids/version.cr | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 67d1b9e..61c0e46 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Hashids [![Build Status](https://travis-ci.org/splattael/hashids.cr.svg)](https://travis-ci.org/splattael/hashids.cr) -[![Shard version](https://img.shields.io/badge/hashids.cr-v0.1.0-orange.svg)](http://crystalshards.xyz/?filter=hashids) +[![Shard version](https://img.shields.io/badge/hashids.cr-v0.2.0-orange.svg)](http://crystalshards.xyz/?filter=hashids) A small Crystal shard to generate YouTube-like ids from one or many numbers. Use hashids when you do not want to expose your database ids to the user. @@ -24,7 +24,7 @@ Add this to your application's `shard.yml`: dependencies: hashids: github: splattael/hashids.cr - version: 0.1.0 + version: 0.2.0 ``` ## Usage diff --git a/shard.yml b/shard.yml index 3a0f3dc..6111b18 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: hashids -version: 0.1.0 +version: 0.2.0 authors: - Peter Suschlik diff --git a/src/hashids/version.cr b/src/hashids/version.cr index ff75b82..e688333 100644 --- a/src/hashids/version.cr +++ b/src/hashids/version.cr @@ -1,3 +1,3 @@ module Hashids - VERSION = "0.1.0" + VERSION = "0.2.0" end