diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8acd0ea..a13eeaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,14 @@ jobs: fail-fast: false matrix: crystal_version: - - 0.36.1 - 1.0.0 + - 1.1.0 + - 1.2.0 experimental: - false + include: + crystal_version: nightly + experimental: true runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} steps: @@ -35,10 +39,14 @@ jobs: fail-fast: false matrix: crystal_version: - - 0.36.1 - 1.0.0 + - 1.1.0 + - 1.2.0 experimental: - false + include: + crystal_version: nightly + experimental: true runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} steps: diff --git a/README.md b/README.md index 8bf4437..76c1c44 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ to generate an email body content. ## Contributing -1. Fork it () +1. Fork it () 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) diff --git a/shard.yml b/shard.yml index d464dd3..9d47c77 100644 --- a/shard.yml +++ b/shard.yml @@ -1,10 +1,10 @@ name: carbon_sendgrid_adapter -version: 0.1.0 +version: 0.2.0 authors: - Matthew McGarvey -crystal: '>= 0.36.1, < 2.0.0' +crystal: '>= 1.0.0' license: MIT diff --git a/src/carbon_sendgrid_adapter.cr b/src/carbon_sendgrid_adapter.cr index 14eafbb..f2865e5 100644 --- a/src/carbon_sendgrid_adapter.cr +++ b/src/carbon_sendgrid_adapter.cr @@ -5,6 +5,7 @@ require "./errors" require "./carbon_sendgrid_extensions" class Carbon::SendGridAdapter < Carbon::Adapter + VERSION = "0.2.0" private getter api_key : String private getter? sandbox : Bool diff --git a/src/version.cr b/src/version.cr deleted file mode 100644 index 970c112..0000000 --- a/src/version.cr +++ /dev/null @@ -1,3 +0,0 @@ -module CarbonSendgridAdapter - VERSION = "0.1.0" -end