diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index a8d3946..ba3fbca 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -36,8 +36,8 @@ jobs: - name: Build run: crystal docs - name: Deploy - uses: JamesIves/github-pages-deploy-action@2.0.1 + uses: JamesIves/github-pages-deploy-action@2.0.3 env: - ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages FOLDER: docs diff --git a/README.md b/README.md index abfe137..189f204 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ The built binary will be available as `./bin/oq`. This can be relocated elsewhe ```dockerfile # Set an arg to store the oq version that should be installed. -ARG OQ_VERSION=1.0.0 +ARG OQ_VERSION=1.1.1 # Grab the binary from the latest Github release and make it executable; placing it within /usr/local/bin. Can also put it elsewhere if you so desire. RUN wget https://github.com/Blacksmoke16/oq/releases/download/v${OQ_VERSION}/oq-${OQ_VERSION}-linux-x86_64 -O /usr/local/bin/oq && chmod +x /usr/local/bin/oq diff --git a/shard.yml b/shard.yml index 6c966de..373a384 100644 --- a/shard.yml +++ b/shard.yml @@ -3,7 +3,7 @@ name: oq description: | A performant, and portable jq wrapper thats facilitates the consumption and output of formats other than JSON; using jq filters to transform the data. -version: 1.1.0 +version: 1.1.1 authors: - George Dietrich @@ -19,4 +19,4 @@ targets: development_dependencies: ameba: github: crystal-ameba/ameba - version: ~> 0.12.0 + version: ~> 0.13.0 diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 91f694f..f1b665c 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: oq -version: '1.1.0' +version: '1.1.1' summary: A performant, and portable jq wrapper to support formats other than JSON description: | A performant, and portable jq wrapper thats facilitates the consumption and output of formats other than JSON; using jq filters to transform the data. diff --git a/src/oq.cr b/src/oq.cr index 402d635..d8dde2c 100644 --- a/src/oq.cr +++ b/src/oq.cr @@ -6,7 +6,7 @@ require "./converters/*" # A performant, and portable jq wrapper thats facilitates the consumption and output of formats other than JSON; using jq filters to transform the data. module OQ - VERSION = "1.1.0" + VERSION = "1.1.1" # The support formats that can be converted to/from. enum Format