From f11ca70642a6f2f9880491f708d0425caf325c80 Mon Sep 17 00:00:00 2001 From: Blacksmoke16 Date: Mon, 16 Dec 2019 11:55:09 -0500 Subject: [PATCH] Release 1.0.0 (#41) --- README.md | 9 --------- shard.yml | 2 +- snap/snapcraft.yaml | 2 +- src/oq.cr | 2 +- 4 files changed, 3 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 671eb50..a82ac7b 100644 --- a/README.md +++ b/README.md @@ -84,15 +84,6 @@ oq -i yaml -o xml . data.yaml ``` -## Roadmap - -Plans for `1.0.0`: - -* ~~XML input format~~ -* Address bugs/issues that arise -* Small feature requests -* Possibly additional formats - ## Contributing 1. Fork it () diff --git a/shard.yml b/shard.yml index df151b7..f712e47 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: 0.2.1 +version: 1.0.0 authors: - Blacksmoke16 diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 5bcdf27..26814cf 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: oq -version: '0.2.1' +version: '1.0.0' 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 38ecc77..5f9237f 100644 --- a/src/oq.cr +++ b/src/oq.cr @@ -6,7 +6,7 @@ require "./converters/*" # A performant and portable `jq` wrapper to support formats other than JSON. module OQ - VERSION = "0.2.1" + VERSION = "1.0.0" # The support formats that can be converted to/from. enum Format