mirror of
https://github.com/mikefarah/yq.git
synced 2025-01-24 23:35:40 +00:00
Bumping version
This commit is contained in:
parent
d4b9781ee6
commit
2ace48c70d
@ -5,7 +5,7 @@ WORKDIR /go/src/mikefarah/yq
|
|||||||
COPY . /go/src/mikefarah/yq
|
COPY . /go/src/mikefarah/yq
|
||||||
|
|
||||||
RUN CGO_ENABLED=0 go build .
|
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
|
RUN ./scripts/acceptance.sh
|
||||||
|
|
||||||
# Choose alpine as a base image to make this useful for CI, as many
|
# Choose alpine as a base image to make this useful for CI, as many
|
||||||
|
@ -11,7 +11,7 @@ var (
|
|||||||
GitDescribe string
|
GitDescribe string
|
||||||
|
|
||||||
// Version is main version number that is being run at the moment.
|
// 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)
|
// 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
|
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM mikefarah/yq:4.13.5
|
FROM mikefarah/yq:4.14.1
|
||||||
|
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
4.14.1:
|
4.14.1:
|
||||||
- Added group_by operator
|
- Added group_by operator
|
||||||
- Added encode/decode operators (toyaml, fromjson etc)
|
- Added encode/decode operators (toyaml, fromjson etc) (#974)
|
||||||
- Added flatten operator
|
- Added flatten operator
|
||||||
|
- Added --split-exp, for splitting results into multiple files (#966)
|
||||||
|
- Fixed json null array bug (#985)
|
||||||
|
|
||||||
4.13.5:
|
4.13.5:
|
||||||
- Performance improvement for deepMatch (thanks @pmatseykanets)
|
- Performance improvement for deepMatch (thanks @pmatseykanets)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: yq
|
name: yq
|
||||||
version: '4.13.5'
|
version: '4.14.1'
|
||||||
summary: A lightweight and portable command-line YAML processor
|
summary: A lightweight and portable command-line YAML processor
|
||||||
description: |
|
description: |
|
||||||
The aim of the project is to be the jq or sed of yaml files.
|
The aim of the project is to be the jq or sed of yaml files.
|
||||||
|
Loading…
Reference in New Issue
Block a user