Skip to content

Commit 58b8f6f

Browse files
authored
Drop support for Crystal below 1.0. Bump versions for next release (#39)
1 parent e41bbb2 commit 58b8f6f

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
shard_file:
1717
- shard.yml
1818
crystal_version:
19-
- 0.36.1
2019
- 1.0.0
2120
- 1.1.1
21+
- 1.2.2
2222
runs-on: ubuntu-latest
2323
container: crystallang/crystal:${{ matrix.crystal_version }}-alpine
2424
services:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
container:
11-
image: crystallang/crystal:0.36.1
11+
image: crystallang/crystal:1.2.2
1212
steps:
1313
- uses: actions/checkout@v2
1414
with:

shard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: cable
2-
version: 0.1.0
2+
version: 0.2.0
33

44
authors:
55
- Celso Fernandes <[email protected]>
66

7-
crystal: ">= 0.35.0, < 2.0.0"
7+
crystal: ">= 1.0.0, < 2.0.0"
88

99
dependencies:
1010
tasker:
1111
github: spider-gazelle/tasker
1212
version: ~> 2.0
1313
redis:
1414
github: stefanwille/crystal-redis
15-
version: ~> 2.7.0
15+
version: ~> 2.8.0
1616
habitat:
1717
github: luckyframework/habitat
1818

src/cable.cr

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require "./cable/**"
55

66
# TODO: Write documentation for `Cable`
77
module Cable
8-
VERSION = "0.1.0"
8+
VERSION = "0.2.0"
99

1010
INTERNAL = {
1111
message_types: {
@@ -35,6 +35,4 @@ module Cable
3535
def self.message(event : Symbol)
3636
INTERNAL[:message_types][event]
3737
end
38-
39-
# TODO: Put your code here
4038
end

0 commit comments

Comments
 (0)