Skip to content

Commit

Permalink
bump versions for next release. Cleanup CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Apr 19, 2024
1 parent f89f7b8 commit 57c8ae1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 19 deletions.
10 changes: 0 additions & 10 deletions .ameba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,3 @@ Naming/AccessorMethodName:
- src/lucky_flow/webless/element.cr
Enabled: true
Severity: Convention

# Problems found: 5
# Run `ameba --only Lint/UselessAssign` for details
Lint/UselessAssign:
Description: Disallows useless variable assignments
ExcludeTypeDeclarations: false
Excluded:
- src/lucky_flow.cr
Enabled: true
Severity: Warning
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: crystal-lang/install-crystal@v1
with:
crystal: latest
Expand All @@ -30,7 +30,7 @@ jobs:
crystal: latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
Expand All @@ -55,7 +55,7 @@ jobs:
crystal: latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: beta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: crystal-lang/install-crystal@v1
Expand All @@ -19,7 +19,7 @@ jobs:
- name: "Generate docs"
run: crystal docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crystallang/crystal:1.5.1
FROM crystallang/crystal:1.10.0
WORKDIR /data
EXPOSE 3002

Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: lucky_flow
version: 0.9.2
version: 0.10.0

authors:
- Paul Smith <[email protected]>

crystal: "~> 1.5"
crystal: "~> 1.10"

license: MIT

Expand Down
2 changes: 1 addition & 1 deletion src/lucky_flow/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class LuckyFlow
VERSION = "0.9.2"
VERSION = "0.10.0"
end

0 comments on commit 57c8ae1

Please sign in to comment.