soveran / clac

Command-line, stack-based calculator with postfix notation
BSD 2-Clause "Simplified" License
356 stars 30 forks source link

Current stable version? #11

Closed ilovezfs closed 6 years ago

ilovezfs commented 6 years ago

Based on https://github.com/soveran/clac/releases and https://github.com/soveran/clac/releases/latest I cannot tell if 0.3.0, 0.3.1, or something else besides either of them, is the current stable version.

Which version should be in Homebrew's stable spec? Thanks!

soveran commented 6 years ago

Hello @ilovezfs! Indeed 0.3.1 is a stable release. It only includes a fix in the man page. I created the new formula but didn't submit it yet.

Here's the diff:

diff --git a/Formula/clac.rb b/Formula/clac.rb
index 4efd61b..11bb12b 100644
--- a/Formula/clac.rb
+++ b/Formula/clac.rb
@@ -1,8 +1,8 @@
 class Clac < Formula
   desc "Command-line, stack-based calculator with postfix notation"
   homepage "https://github.com/soveran/clac"
-  url "https://github.com/soveran/clac/archive/0.3.0.tar.gz"
-  sha256 "a7a2397fdbac93924ca83c72e2df2027029f54c8921b813230208dd167ed0c20"
+  url "https://github.com/soveran/clac/archive/0.3.1.tar.gz"
+  sha256 "38cf86f99959d2223f052acfd9e0fecb402a137ebf859a9c64a541b15396e32b"

   bottle do
     cellar :any_skip_relocation

I will check how to submit a pull request for this update. Thanks!