-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): Tag v0.21.8 [skip ci]
- Loading branch information
github-actions
committed
Jan 18, 2024
1 parent
fa86fa1
commit b901287
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
class Secureli < Formula | ||
include Language::Python::Virtualenv | ||
desc "seCureLI is a tool that enables you to experience the delight of building products by helping you get ideas from your head into working software as frictionlessly as possible, in a reliable, secure, scalable, and observable way" | ||
homepage "https://github.com/slalombuild/secureli" | ||
url "{{ secureliPackageUrl }}" | ||
version "{{ secureliVersion }}" | ||
sha256 "{{ secureliSha256 }}" | ||
license "Apache-2.0" | ||
|
||
depends_on "[email protected]" | ||
|
||
{% for package in secureliPackageDependencies %} | ||
resource "{{ package.packageName }}" do | ||
url "{{ package.packageUrl}}" | ||
sha256 "{{ package.sha256 }}" | ||
end | ||
{% endfor %} | ||
|
||
def install | ||
virtualenv_install_with_resources | ||
end | ||
|
||
test do | ||
system "secureli", "--help" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "secureli" | ||
version = "0.21.7" | ||
version = "0.21.8" | ||
description = "Secure Project Manager" | ||
authors = ["Caleb Tonn <[email protected]>"] | ||
license = "Apache-2.0" | ||
|