Skip to content

Commit 109775e

Browse files
committed
change help tagline back to original
1 parent 29a1b84 commit 109775e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
# https://github.com/ryanmjacobs/c
33

4-
readonly VERSION="0.15.1-dev"
4+
readonly VERSION="0.15.1"
55

66
# max cachesize in kilobytes (default=5MB)
77
[[ -z "$C_CACHE_SIZE" ]] && C_CACHE_SIZE=$((5*1024))
@@ -14,7 +14,7 @@ help_msg() {
1414
>&$1 cat <<EOM
1515
Usage: $(basename "$0") [OPTIONS] <FILE.C> [COMPILER_FLAGS] [ARGUMENTS]
1616
17-
Execute C programs from the command line.
17+
Compile and execute C "scripts" in one go!
1818
___
1919
2020
EXAMPLES

c.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
class C < Formula
22
homepage "https://github.com/ryanmjacobs/c"
3-
url "https://github.com/ryanmjacobs/c/archive/refs/tags/v0.15.0.tar.gz"
3+
url "https://github.com/ryanmjacobs/c/archive/refs/tags/v0.15.1.tar.gz"
44
sha256 "e07ce163412ccf5163d3d974a19cd768bc289f3cacdf2978dcf908682f51a07a"
55
head "https://github.com/ryanmjacobs/c.git"
6-
version "0.15.0"
6+
version "0.15.1"
77

88
def install
99
bin.install "c"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "c",
3-
"version": "0.15.1-dev",
3+
"version": "0.15.1",
44
"description": "Compile and execute C 'scripts' in one go!",
55
"repository": "github:ryanmjacobs/c",
66
"license": "MIT",

0 commit comments

Comments
 (0)