Bumping version

This commit is contained in:
Mike Farah 2021-10-30 14:08:13 +11:00
parent d4b9781ee6
commit 2ace48c70d
5 changed files with 7 additions and 5 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /go/src/mikefarah/yq
COPY . /go/src/mikefarah/yq
RUN CGO_ENABLED=0 go build .
RUN ./scripts/test.sh
# RUN ./scripts/test.sh -- this too often times out in the github pipeline.
RUN ./scripts/acceptance.sh
# Choose alpine as a base image to make this useful for CI, as many

View File

@ -11,7 +11,7 @@ var (
GitDescribe string
// Version is main version number that is being run at the moment.
Version = "4.13.5"
Version = "4.14.1"
// VersionPrerelease is a pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release

View File

@ -1,4 +1,4 @@
FROM mikefarah/yq:4.13.5
FROM mikefarah/yq:4.14.1
COPY entrypoint.sh /entrypoint.sh

View File

@ -1,7 +1,9 @@
4.14.1:
- Added group_by operator
- Added encode/decode operators (toyaml, fromjson etc)
- Added encode/decode operators (toyaml, fromjson etc) (#974)
- Added flatten operator
- Added --split-exp, for splitting results into multiple files (#966)
- Fixed json null array bug (#985)
4.13.5:
- Performance improvement for deepMatch (thanks @pmatseykanets)

View File

@ -1,5 +1,5 @@
name: yq
version: '4.13.5'
version: '4.14.1'
summary: A lightweight and portable command-line YAML processor
description: |
The aim of the project is to be the jq or sed of yaml files.