Skip to content

Commit

Permalink
Bump version & 1.0.0-dev updates (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blacksmoke16 authored Nov 9, 2020
1 parent c8f4aac commit c73901d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ jobs:
deploy_docs:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
image: crystallang/crystal:latest-alpine
steps:
- name: Install Build Dependencies
run: apk add --update rsync
- uses: actions/checkout@v2
- name: Install Dependencies
run: shards install --production
- name: Build
run: crystal docs lib/athena-config/src/athena-config.cr src/athena-serializer.cr
- name: Deploy
uses: JamesIves/github-pages-deploy-action@2.0.3
env:
uses: JamesIves/github-pages-deploy-action@3.6.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs
SINGLE_COMMIT: true
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: athena-serializer

version: 0.2.0
version: 0.2.1

crystal: 0.35.0

Expand Down
2 changes: 1 addition & 1 deletion src/any.cr
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module Athena::Serializer::Any
abstract def as_a
abstract def as_a?
abstract def is_nil? : Bool
abstract def dig(key, *keys)
abstract def dig(key_or_index : String | Int, *keys)

abstract def raw
end
Expand Down
2 changes: 1 addition & 1 deletion src/navigators/deserialization_navigator.cr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Athena::Serializer::Navigators::DeserializationNavigatorInterface
abstract def accept(type, data : ASR::Any)
abstract def accept(type : T.class, data : ASR::Any) forall T
end

struct Athena::Serializer::Navigators::DeserializationNavigator
Expand Down

0 comments on commit c73901d

Please sign in to comment.