Skip to content

Commit fb4b0f9

Browse files
committed
Ensure project uses Crystal 1.15.0
1 parent 03805d2 commit fb4b0f9

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
crystal:
1111
runs-on: ubuntu-latest
1212
container:
13-
image: crystallang/crystal:1.14.0
13+
image: crystallang/crystal:1.15.0
1414
steps:
1515
- uses: actions/checkout@v1
1616
- name: Install required packages

.github/workflows/specs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
container:
15-
image: crystallang/crystal:1.14.0
15+
image: crystallang/crystal:1.15.0
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Install required packages

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM crystallang/crystal:1.14.0
1+
FROM crystallang/crystal:1.15.0
22
WORKDIR /app
33
COPY . .
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This repository contains the Marten Framework website project.
66

77
## System requirements
88

9-
* [Crystal](https://crystal-lang.org/) 1.14+
9+
* [Crystal](https://crystal-lang.org/) 1.15+
1010
* [Node.js](https://nodejs.org/en/) - 18.x
1111

1212
## Installation

shard.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.0
22
shards:
33
ameba:
44
git: https://github.com/crystal-ameba/ameba.git
5-
version: 1.6.3+git.commit.51cb88e4fb9016981beb78726dff881c2c1dac4a
5+
version: 1.7.0-dev+git.commit.e113669f922132b3cfa4b86f72e73644f337989c
66

77
any_hash:
88
git: https://github.com/sija/any_hash.cr.git
@@ -26,7 +26,7 @@ shards:
2626

2727
i18n:
2828
git: https://github.com/crystal-i18n/i18n.git
29-
version: 0.2.1
29+
version: 0.2.2
3030

3131
marten:
3232
git: https://github.com/martenframework/marten.git

shard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: website
22
version: 0.1.0
33

4-
crystal: 1.14.0
4+
crystal: 1.15.0
55

66
dependencies:
77
cmark:

spec/common/www_redirect_middleware_spec.cr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe WWWRedirectMiddleware do
2323
headers: HTTP::Headers{"Host" => "example.com"}
2424
)
2525
),
26-
->{ Marten::HTTP::Response.new("It works!", content_type: "text/plain", status: 200) }
26+
-> { Marten::HTTP::Response.new("It works!", content_type: "text/plain", status: 200) }
2727
)
2828

2929
response.should be_a Marten::HTTP::Response
@@ -41,7 +41,7 @@ describe WWWRedirectMiddleware do
4141
headers: HTTP::Headers{"Host" => "www.example.com"}
4242
)
4343
),
44-
->{ Marten::HTTP::Response.new("It works!", content_type: "text/plain", status: 200) }
44+
-> { Marten::HTTP::Response.new("It works!", content_type: "text/plain", status: 200) }
4545
)
4646

4747
response.should be_a Marten::HTTP::Response::MovedPermanently

src/website/models/news.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module Website
5959
@description : String,
6060
@author_name : String,
6161
@author_github : String,
62-
@content : String
62+
@content : String,
6363
)
6464
end
6565

0 commit comments

Comments
 (0)