Skip to content

Commit

Permalink
Release 1.1.1 (#62)
Browse files Browse the repository at this point in the history
* Release 1.1.1
* Update Ameba version
* Use GITHUB_TOKEN for docs deployments
  • Loading branch information
Blacksmoke16 committed Jun 21, 2020
1 parent 68d4b89 commit 59a5e0c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
- name: Build
run: crystal docs
- name: Deploy
uses: JamesIves/[email protected].1
uses: JamesIves/[email protected].3
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
Expand All @@ -19,4 +19,4 @@ targets:
development_dependencies:
ameba:
github: crystal-ameba/ameba
version: ~> 0.12.0
version: ~> 0.13.0
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/oq.cr
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 59a5e0c

Please sign in to comment.