Skip to content

Commit c87074b

Browse files
committed
0.5.4
1 parent 57e19de commit c87074b

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "ahqstore_cli_rs"
4-
version = "0.5.3"
4+
version = "0.5.4"
55
description = "AHQ Store CLI"
66
repository = "https://github.com/ahqstore/cli"
77
homepage = "https://github.com/ahqstore/cli"

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Read more about it [here](https://ahqstore.github.io)
44

55
# Changelog
66

7+
## 0.5.4 01-Sep-2024 10:07PM IST
8+
9+
- **[CRITICAL]** Fixes invalid config files being generated
10+
711
## 0.5.1 23-Aug-2024 10:09PM IST
812

913
- Fix NPM Publish error

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ahqstore/cli",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"readme": "./README.md",
55
"napi": {
66
"name": "cli",

src/app/build/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,17 +197,16 @@ pub fn build_config(upload: bool, gh_action: bool) {
197197
// }
198198

199199
let config_file = to_string_pretty(&final_config).unwrap();
200-
let config_file = to_string(config_file.as_bytes()).unwrap();
201200

202201
if !gh_action {
203-
println!("Bytes: ahqstore.json");
202+
println!("{} {}.json", &*INFO, &app_id);
204203
println!("{}", &config_file);
205204
}
206205

207206
if upload {
208207
let uup = gh_r
209208
.upload_url
210-
.replace("{?name,label}", &format!("?name={app_id}.txt"));
209+
.replace("{?name,label}", &format!("?name={app_id}.json"));
211210

212211
let resp = CLIENT
213212
.post(uup)

0 commit comments

Comments
 (0)