Skip to content

Commit 3535d98

Browse files
committed
Use Insets to apply margins
1 parent d8daaf7 commit 3535d98

File tree

12 files changed

+36
-31
lines changed

12 files changed

+36
-31
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.11.4"
4+
version = "0.12.0"
55
description = "AHQ Store CLI"
66
repository = "https://github.com/ahqstore/cli"
77
homepage = "https://github.com/ahqstore/cli"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ deno install -g npm:@ahqstore/cli
7878
### Using JSR
7979

8080
```sh
81-
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.11.4/js/cli.js
81+
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.12.0/js/cli.js
8282
```
8383

8484
## Bun

dart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ deno install -g npm:@ahqstore/cli
6464
### Using JSR
6565

6666
```sh
67-
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.11.4/js/cli.js
67+
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.12.0/js/cli.js
6868
```
6969

7070
## Bun

dart/bin/ahqstore.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'dart:io';
44
import 'package:ffi/ffi.dart';
55
import 'package:http/http.dart';
66

7-
const String version = "0.11.4";
7+
const String version = "0.12.0";
88

99
String getUserHomeDirectory() {
1010
if (Platform.isLinux || Platform.isMacOS) {

dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ahqstore_cli
22
description: An Official port of the original AHQ Store Rust CLI
3-
version: 0.11.4
3+
version: 0.12.0
44
repository: https://github.com/ahqstore/cli
55
executables:
66
ahqstore:

dotnet/dotnet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<!-- Package Information -->
1818
<PackageId>AHQStoreCLI</PackageId>
19-
<Version>0.11.4</Version>
19+
<Version>0.12.0</Version>
2020
<Authors>AHQ Softwares</Authors>
2121
<Description>AHQ Store Official CLI, A port of the rust version to C#</Description>
2222

go/ahqstore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/schollz/progressbar/v3"
1313
)
1414

15-
const version = "0.11.4"
15+
const version = "0.12.0"
1616

1717
func main() {
1818
var bin = getBinary()

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://jsr.io/schema/config-file.v1.json",
33
"name": "@ahqstore/cli",
4-
"version": "0.11.4",
4+
"version": "0.12.0",
55
"license": "MIT",
66
"exports": {
77
".": "./js/cli.js"

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.11.4",
3+
"version": "0.12.0",
44
"description": "AHQ Store Official CLI, A port of the rust version to NodeJS",
55
"keywords": [
66
"cli",

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "ahqstore-cli"
7-
version = "0.11.4"
7+
version = "0.12.0"
88
authors = [{ name = "AHQ Softwares", email = "[email protected]" }]
99
description = "A modern Python wrapper for the ahqstore CLI"
1010
readme = "../README.md"

0 commit comments

Comments
 (0)