From 33e2e1e98557d4a450538d5effcc04b8e04c0758 Mon Sep 17 00:00:00 2001 From: Daniel Huffman Date: Wed, 1 Jul 2020 01:02:16 -0400 Subject: [PATCH] Drhuffman12/prep for crystal 1.0.0 p2 (#44) * bump version from 0.1.12 to 0.1.13 * Remove references to Crystal v 0.33.0 --- .crystal-version | 2 +- .github/workflows/crystal.yml | 2 +- shard.yml | 3 +-- src/ai4cr/version.cr | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.crystal-version b/.crystal-version index be386c9e..d3827e75 100644 --- a/.crystal-version +++ b/.crystal-version @@ -1 +1 @@ -0.33.0 +1.0 diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index 3f5beeab..26095bb5 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -22,9 +22,9 @@ jobs: run: crystal -v - name: Show repo version run: scripts/version_info + # # TODO: re-enable ameba after that shard is updated for Crystal 1.0 compatibility # - name: Run static code analysis # run: bin/ameba --no-color - # # TODO: re-enable ameba after that shard is updated for Crystal 1.0 compatibility - name: Run tests run: scripts/test_always # run: crystal spec diff --git a/shard.yml b/shard.yml index 5668c5ee..60e96482 100644 --- a/shard.yml +++ b/shard.yml @@ -1,10 +1,9 @@ name: ai4cr -version: 0.1.12 +version: 0.1.13 authors: - Daniel Huffman -# crystal: 0.33.0 crystal: 1.0 license: MIT diff --git a/src/ai4cr/version.cr b/src/ai4cr/version.cr index e26cec45..17d4236e 100644 --- a/src/ai4cr/version.cr +++ b/src/ai4cr/version.cr @@ -1,3 +1,3 @@ module Ai4cr - VERSION = "0.1.12" + VERSION = "0.1.13" end