Skip to content

Commit

Permalink
docs: updated CHANGELOG.md & docs
Browse files Browse the repository at this point in the history
🤖 add release changelog using rebot.
  • Loading branch information
ysicing authored and github-actions[bot] committed May 24, 2024
1 parent 9de2a37 commit 54c4566
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v3.0.24 (2024-05-24)

* [72aed51](https://github.com/easysoft/quickon_cli/commit/72aed513dc705546570b9803e7bde31b449acd7c) refactor: update Chrome version constant and remove unused functions
* [319e22f](https://github.com/easysoft/quickon_cli/commit/319e22f259e01f7a6eda19b2d2a10bab84e36be4) feat: add support for validating and allowing namespaces
* [8c71fef](https://github.com/easysoft/quickon_cli/commit/8c71fef4dfcc580e52852bf37829edb1f3754aea) feat: add backup subcommands and support for listing backups

### Contributors

* ysicing

## v3.0.23 (2024-05-22)

* [ab0f578](https://github.com/easysoft/quickon_cli/commit/ab0f5784554053dc42ed3763073a9fa16963f656) fix: add error checking and update description for `InstallCommand`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.24
3.0.25
2 changes: 1 addition & 1 deletion docs/qcadmin.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ Easily bootstrap a secure control plane for QuCheng
* [qcadmin version](version.md) - Show version

::: tip
>Auto generated by spf13/cobra on 2024-May-22
>Auto generated by spf13/cobra on 2024-May-24
:::
10 changes: 5 additions & 5 deletions docs/qcadmin.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
class Qcadmin < Formula
desc "qcadmin is an open-source lightweight cli tool for managing quickon."
homepage "https://github.com/easysoft/quickon_cli"
version "3.0.23"
version "3.0.24"

on_macos do
if Hardware::CPU.arm?
url "https://github.com/easysoft/quickon_cli/releases/download/v#{version}/qcadmin_darwin_arm64"
sha256 "93797fe9be873541b174fbf027fea23fb1008b4a201ba14f710fbd2d3238da72"
sha256 "adff546431f8d03dea757376771dec368f8fce5b5b3ceab3e2130bd6289362ff"

def install
bin.install "qcadmin_darwin_arm64" => "qcadmin"
Expand All @@ -15,7 +15,7 @@ def install

if Hardware::CPU.intel?
url "https://github.com/easysoft/quickon_cli/releases/download/v#{version}/qcadmin_darwin_amd64"
sha256 "430dbb1b1c291e3931225e1065439a228c9116c7237d6f6e0ab0a657252b2a9b"
sha256 "5ef526ef828936ba019a4aad8952943d79a3ba162631067d4c8cd99d97c6dac9"

def install
bin.install "qcadmin_darwin_amd64" => "qcadmin"
Expand All @@ -26,7 +26,7 @@ def install
on_linux do
if Hardware::CPU.intel?
url "https://github.com/easysoft/quickon_cli/releases/download/v#{version}/qcadmin_linux_amd64"
sha256 "af9f0c222150d548c577ebbef059057b1bf5cc5294d3e26adeb8c5a5f5af3e2e"
sha256 "747da9d19e9162eb2de6da7de56137f93660fe99e5d5198e1b7712efeed15efa"

def install
bin.install "qcadmin_linux_amd64" => "qcadmin"
Expand All @@ -35,7 +35,7 @@ def install

if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/easysoft/quickon_cli/releases/download/v#{version}/qcadmin_linux_arm64"
sha256 "66ec9a6b94824a199d13db5a23ac98187de6971698d9809b19bfa3ccb770b35c"
sha256 "5c94e42a7baa8a833af829bb813c883b2a289c92d6afda34a21407d774f56a03"

def install
bin.install "qcadmin_linux_arm64" => "qcadmin"
Expand Down
6 changes: 3 additions & 3 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"latest": "3.0.24",
"stable": "3.0.24",
"dev": "3.0.24"
"latest": "3.0.25",
"stable": "3.0.25",
"dev": "3.0.25"
}

0 comments on commit 54c4566

Please sign in to comment.