Skip to content

Commit

Permalink
Support Crystal 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendolan committed Mar 25, 2021
1 parent be08070 commit ab7abe5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
persist-credentials: false

- name: "Install shards"
run: shards install
run: shards install --ignore-crystal-version

- name: "Generate docs"
run: crystal docs
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
fail-fast: false
matrix:
crystal_version:
- 0.35.1
- 0.36.1
- latest
experimental: [false]
include:
Expand Down Expand Up @@ -45,7 +47,7 @@ jobs:
- name: Install shards
if: steps.crystal-cache.outputs.cache-hit != 'true'
run: shards check || shards install
run: shards check || shards install --ignore-crystal-version

- name: Crystal Ameba Linter
run: ./bin/ameba
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: decorator
description: A simple object decoration library for Crystal apps
version: 0.2.0
version: 0.3.0

authors:
- Stephen Dolan <stephen@luckycasts.com>

crystal: 0.36.1
crystal: ">= 0.35.0, < 2.0.0"

license: MIT

Expand Down
2 changes: 1 addition & 1 deletion src/decorator/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Decorator
VERSION = "0.2.0"
VERSION = "0.3.0"
end

0 comments on commit ab7abe5

Please sign in to comment.