@ahqstore/cli 0.16.0-alpha.25 → 0.16.0-alpha.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.build CHANGED
@@ -1 +1 @@
1
- 2026-02-24 06:15:44
1
+ 2026-02-24 07:18:42
package/Cargo.toml CHANGED
@@ -1,7 +1,7 @@
1
1
  [package]
2
2
  edition = "2021"
3
3
  name = "ahqstore_cli_rs"
4
- version = "0.16.0-alpha.25"
4
+ version = "0.16.0-alpha.28"
5
5
  description = "AHQ Store Developers' CLI"
6
6
  repository = "https://github.com/ahqstore/cli"
7
7
  homepage = "https://github.com/ahqstore/cli"
package/README.md CHANGED
@@ -78,7 +78,7 @@ deno install -g npm:@ahqstore/cli
78
78
  ### Using JSR
79
79
 
80
80
  ```sh
81
- deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.16.0-alpha.25/js/cli.js
81
+ deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.16.0-alpha.28/js/cli.js
82
82
  ```
83
83
 
84
84
  ## Bun
package/dart/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
- ## 0.0.1
1
+ ## 0.16.0-alpha.28
2
2
 
3
- -
3
+ Please refer to https://github.com/ahqstore/cli/releases/tag/0.16.0-alpha.28 for changelog
4
+
5
+ ## 0.0.1 Please refer to https://github.com/ahqstore/cli/releases/tag/0.0.1 for changelog
@@ -5,7 +5,7 @@ import 'package:ffi/ffi.dart';
5
5
  import 'package:http/http.dart';
6
6
 
7
7
  // IMP
8
- const String version = "0.16.0-alpha.25";
8
+ const String version = "0.16.0-alpha.28";
9
9
  // ENDIMP
10
10
 
11
11
  String getUserHomeDirectory() {
package/dart/pubspec.yaml CHANGED
@@ -1,6 +1,6 @@
1
1
  name: ahqstore_cli
2
2
  description: An Official port of the original AHQ Store Rust CLI
3
- version: 0.16.0-alpha.25
3
+ version: 0.16.0-alpha.28
4
4
  repository: https://github.com/ahqstore/cli
5
5
  executables:
6
6
  ahqstore:
package/jsr.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://jsr.io/schema/config-file.v1.json",
3
3
  "name": "@ahqstore/cli",
4
- "version": "0.16.0-alpha.25",
4
+ "version": "0.16.0-alpha.28",
5
5
  "license": "MIT",
6
6
  "exports": {
7
7
  ".": "./js/cli.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahqstore/cli",
3
- "version": "0.16.0-alpha.25",
3
+ "version": "0.16.0-alpha.28",
4
4
  "description": "AHQ Store Official CLI, A port of the rust version to NodeJS",
5
5
  "keywords": [
6
6
  "cli",
@@ -5,7 +5,6 @@ $pubspec = Get-Content "./dart/pubspec.yaml" -Raw
5
5
 
6
6
  $output = $pubspec -replace "version: ([^`"\s<]+)", "version: $version"
7
7
 
8
- $pubspec > "./dart/pubspec.bak.yaml"
9
8
  $output > "./dart/pubspec.yaml"
10
9
 
11
10
  # Update the dart file
@@ -13,5 +12,13 @@ $dartbin = Get-Content "./dart/bin/ahqstore.dart" -Raw
13
12
 
14
13
  $output = $dartbin -replace "const String version = `"([^`"\s<]+)`";", "const String version = `"$version`";"
15
14
 
16
- $dartbin > "./dart/bin/ahqstore.bak.dart"
17
15
  $output > "./dart/bin/ahqstore.dart"
16
+
17
+ # Add CHANGELOG.md
18
+ $changelog = Get-Content "./dart/CHANGELOG.md"
19
+
20
+ "## $version
21
+
22
+ Please refer to https://github.com/ahqstore/cli/releases/tag/$version for changelog
23
+
24
+ $changelog" > "./dart/CHANGELOG.md"