Skip to content

Commit 1d659db

Browse files
chore: upgraded from v1.1.0 -> v1.2.0
1 parent 4496779 commit 1d659db

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "json2file"
33
authors = ["Tonye Jack <[email protected]>"]
4-
version = "1.1.0"
4+
version = "1.2.0"
55
description = "Generate file output from JSON"
66
repository = "https://github.com/tj-actions/json2file"
77
homepage = "https://github.com/tj-actions/json2file"
@@ -16,4 +16,4 @@ categories = ["command-line-utilities"]
1616
regex = "1.7.1"
1717
serde_json = "1.0.91"
1818
clap = { version = "4.0", features = ["derive"] }
19-
unescape = "0.1.0"
19+
unescape = "0.1.0"

HISTORY.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,33 @@
11
# Changelog
22

3-
## [v1.1.0](https://github.com/tj-actions/json2file/tree/v1.1.0) (2023-01-09)
3+
## [v1.2.0](https://github.com/tj-actions/json2file/tree/v1.2.0) (2023-01-10)
44

5-
[Full Changelog](https://github.com/tj-actions/json2file/compare/v1...v1.1.0)
5+
[Full Changelog](https://github.com/tj-actions/json2file/compare/v1...v1.2.0)
66

77
**Fixed bugs:**
88

99
- \[BUG\] write\_output\_files: true -\> double escapes json content in generated files [\#66](https://github.com/tj-actions/json2file/issues/66)
1010

1111
**Merged pull requests:**
1212

13+
- feat: write valid json ouput [\#70](https://github.com/tj-actions/json2file/pull/70) ([jackton1](https://github.com/jackton1))
14+
- fix\(deps\): update rust crate regex to 1.7.1 [\#69](https://github.com/tj-actions/json2file/pull/69) ([renovate[bot]](https://github.com/apps/renovate))
15+
- chore: upgraded to v1.1.0 [\#68](https://github.com/tj-actions/json2file/pull/68) ([jackton1](https://github.com/jackton1))
16+
17+
## [v1](https://github.com/tj-actions/json2file/tree/v1) (2023-01-09)
18+
19+
[Full Changelog](https://github.com/tj-actions/json2file/compare/v1.1.0...v1)
20+
21+
## [v1.1.0](https://github.com/tj-actions/json2file/tree/v1.1.0) (2023-01-09)
22+
23+
[Full Changelog](https://github.com/tj-actions/json2file/compare/v1.0.16...v1.1.0)
24+
25+
**Merged pull requests:**
26+
1327
- fix: convert value to json string [\#67](https://github.com/tj-actions/json2file/pull/67) ([jackton1](https://github.com/jackton1))
1428
- chore: switch to use clap [\#65](https://github.com/tj-actions/json2file/pull/65) ([jackton1](https://github.com/jackton1))
1529
- chore: upgraded to v1.0.16 [\#64](https://github.com/tj-actions/json2file/pull/64) ([jackton1](https://github.com/jackton1))
1630

17-
## [v1](https://github.com/tj-actions/json2file/tree/v1) (2023-01-06)
18-
19-
[Full Changelog](https://github.com/tj-actions/json2file/compare/v1.0.16...v1)
20-
2131
## [v1.0.16](https://github.com/tj-actions/json2file/tree/v1.0.16) (2023-01-06)
2232

2333
[Full Changelog](https://github.com/tj-actions/json2file/compare/v1.0.15...v1.0.16)

entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ download_with_retries() {
1616

1717
if [[ -z "$INPUT_BIN_PATH" ]]; then
1818
echo "Downloading json2file binary..."
19-
LATEST_VERSION=v1.1.0
19+
LATEST_VERSION=v1.2.0
2020

2121
# Download the latest version
2222
WINDOWS_TARGET=x86_64-pc-windows-gnu

0 commit comments

Comments
 (0)