Skip to content

Commit

Permalink
add v0.8.1 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcasalboni authored Feb 14, 2025
1 parent 2550d7a commit 446be62
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edgee.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Edgee < Formula
desc "The full-stack edge platform for your edge-oriented applications."
homepage "https://github.com/edgee-cloud/edgee"
url "https://github.com/edgee-cloud/edgee/archive/refs/tags/v0.8.0.tar.gz"
sha256 "77b3e579295fcbc150d6e325f34278dcd16be3d7c13cda0657015408f122c021"
url "https://github.com/edgee-cloud/edgee/archive/refs/tags/v0.8.1.tar.gz"
sha256 "2c3341ef6564101eab6c07ce6a21c5bb3dee5b10805860522e1df8a489f70010"
license "Apache-2.0"
head "https://github.com/edgee-cloud/edgee.git", branch: "main"

Expand Down
15 changes: 15 additions & 0 deletions edgee@0.8.0.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Edgee < Formula
desc "The full-stack edge platform for your edge-oriented applications."
homepage "https://github.com/edgee-cloud/edgee"
url "https://github.com/edgee-cloud/edgee/archive/refs/tags/v0.8.0.tar.gz"
sha256 "77b3e579295fcbc150d6e325f34278dcd16be3d7c13cda0657015408f122c021"
license "Apache-2.0"
head "https://github.com/edgee-cloud/edgee.git", branch: "main"

depends_on "rust" => :build

def install
system "cargo", "build", "-p", "edgee", "--bin", "edgee", "--release"
bin.install "target/release/edgee"
end
end

0 comments on commit 446be62

Please sign in to comment.