Skip to content

Commit cdba38d

Browse files
authored
Merge pull request #974 from wader/release-0.12.0
fq: Release 0.12.0
2 parents c5d6984 + be3d4b9 commit cdba38d

File tree

2 files changed

+58
-1
lines changed

2 files changed

+58
-1
lines changed

CHANGES.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
1+
# 0.12.0
2+
3+
REPL word navigation fix and `jpeg` DHT decoding, otherwise mostly maintenance release to update dependencies.
4+
5+
## Changes
6+
7+
- Update readline package to fix issue with left/right word jump in REPL. #969
8+
- Update of version of golang and other dependencies.
9+
10+
## Format changes
11+
12+
- `jpeg`
13+
- Decode DHT paramaters. Thanks @matmat. #934
14+
- Fix Fix EOI description. #932
15+
16+
## Changelog
17+
18+
* 94cfbc67 Update docker-golang to 1.22.3 from 1.22.2
19+
* ab09d3ce Update docker-golang to 1.22.4 from 1.22.3
20+
* c6dd0ed1 Update docker-golang to 1.22.5 from 1.22.4
21+
* 9ff7da12 Update github-go-version to 1.22.3 from 1.22.2
22+
* 1ff5a3fa Update github-go-version to 1.22.4 from 1.22.3
23+
* e33c6c61 Update github-go-version to 1.22.5 from 1.22.4
24+
* a5de74cd Update github-golangci-lint to 1.58.0 from 1.57.2
25+
* a59ba2a2 Update github-golangci-lint to 1.58.1 from 1.58.0
26+
* f6d72354 Update github-golangci-lint to 1.58.2 from 1.58.1
27+
* 44e2385a Update github-golangci-lint to 1.59.0 from 1.58.2
28+
* 6383626a Update github-golangci-lint to 1.59.1 from 1.59.0
29+
* 61f81fbf Update gomod-BurntSushi/toml to 1.4.0 from 1.3.2
30+
* 12f33206 Update gomod-ergochat-readline to 0.1.1 from 0.1.0
31+
* 6b1cc870 Update gomod-ergochat-readline to 0.1.2 from 0.1.1
32+
* 14ada508 Update gomod-golang-x-crypto to 0.23.0 from 0.22.0
33+
* f7cbf844 Update gomod-golang-x-crypto to 0.24.0 from 0.23.0
34+
* 384e4c23 Update gomod-golang-x-crypto to 0.25.0 from 0.24.0
35+
* cabb67e8 Update gomod-golang-x-net to 0.25.0 from 0.24.0
36+
* c55e1066 Update gomod-golang-x-net to 0.26.0 from 0.25.0
37+
* e625fcbf Update gomod-golang-x-net to 0.27.0 from 0.26.0
38+
* 586cf142 Update gomod-golang-x-term to 0.20.0 from 0.19.0
39+
* 7566fd93 Update gomod-golang-x-term to 0.21.0 from 0.20.0
40+
* 41ff984c Update gomod-golang-x-term to 0.22.0 from 0.21.0
41+
* 42730d75 Update gomod-golang/text to 0.15.0 from 0.14.0
42+
* 8bc1a20b Update gomod-golang/text to 0.16.0 from 0.15.0
43+
* 3a683b64 Update make-golangci-lint to 1.58.0 from 1.57.2
44+
* 7714fcf4 Update make-golangci-lint to 1.58.1 from 1.58.0
45+
* aef47df2 Update make-golangci-lint to 1.58.2 from 1.58.1
46+
* 0cd90ce0 Update make-golangci-lint to 1.59.0 from 1.58.2
47+
* 71476743 Update make-golangci-lint to 1.59.1 from 1.59.0
48+
* 6db6a54d build,test: Ignore some files to make ./... work
49+
* 175661d3 doc: Add kodsnack 585 - Polymorfisk JSON
50+
* ebf063d1 doc: Cleanup and improve texts a bit
51+
* b818923c doc: Fix function indent
52+
* 6f2b5994 doc: Include format description per format
53+
* 40f38a55 doc: Reorganize and cleanup function descriptions
54+
* ad2c032c goreleaser: Update action and fix deprecation warning
55+
* 6e13b4b5 jpeg: Add parsing of DHT parameters
56+
* b4825560 jpeg: Fix EOI description
57+
158
# 0.11.0
259

360
New iNES/NES 2.0 ROM decoder (thanks @mlofjard) and basic JPEG 2000 format support. jq language improvements and fixes from gojq. And as always various decoder improvements and fixes.

fq.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/wader/fq/pkg/interp"
77
)
88

9-
const version = "0.11.0"
9+
const version = "0.12.0"
1010

1111
func main() {
1212
cli.Main(interp.DefaultRegistry, version)

0 commit comments

Comments
 (0)