From 3423c89f2f88614df3dafec8b9161077d64158e4 Mon Sep 17 00:00:00 2001 From: George Dietrich Date: Sat, 13 Aug 2022 01:00:25 -0400 Subject: [PATCH] Release 1.3.3 (#109) --- README.md | 2 +- shard.yml | 2 +- snap/snapcraft.yaml | 2 +- src/oq.cr | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b0ce1fb..cd05778 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,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.3.2 +ARG OQ_VERSION=1.3.3 # 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-v${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 86ec6dc..c4151da 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.3.2 +version: 1.3.3 authors: - George Dietrich diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 3ecaf36..76c706c 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: oq -version: '1.3.2' +version: '1.3.3' 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 92ef4a2..1ab0c29 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.3.2" + VERSION = "1.3.3" # The support formats that can be converted to/from. enum Format