summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Mike Burns <mburns@thoughtbot.com>2018-07-13 14:26:52 -0400
committerGravatar Mike Burns <mburns@thoughtbot.com>2018-07-13 14:26:52 -0400
commitb9e4c162648686aa0d1b81ced3b78b703d792120 (patch)
tree5b2ba3451978129a8b0bea241c089e086f2190f3
parent00cb50b23f33ab88bc958b1cf9f68ef4da232589 (diff)
Bump 1.3.3v1.3.3
A last-minute bug fix from Eric Collins, accidentally overlooked.
-rw-r--r--README.md10
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 579ed77..c8c2807 100644
--- a/README.md
+++ b/README.md
@@ -84,13 +84,13 @@ Elsewhere:
This uses the standard GNU autotools, so it's the normal dance:
- curl -LO https://thoughtbot.github.io/rcm/dist/rcm-1.3.2.tar.gz &&
+ curl -LO https://thoughtbot.github.io/rcm/dist/rcm-1.3.3.tar.gz &&
- sha=$(sha256 rcm-1.3.2.tar.gz | cut -f1 -d' ') &&
- [ "$sha" = "2f31b49c241ed6e74578fc71e6b2ba3a87183d311f28e05b9f7cc7c1c55dda64" ] &&
+ sha=$(sha256 rcm-1.3.3.tar.gz | cut -f1 -d' ') &&
+ [ "$sha" = "935524456f2291afa36ef815e68f1ab4a37a4ed6f0f144b7de7fb270733e13af" ] &&
- tar -xvf rcm-1.3.2.tar.gz &&
- cd rcm-1.3.2 &&
+ tar -xvf rcm-1.3.3.tar.gz &&
+ cd rcm-1.3.3 &&
./configure &&
make &&
diff --git a/configure.ac b/configure.ac
index c4fa1fd..dcdfe54 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT(rcm, 1.3.2, mburns@thoughtbot.com)
+AC_INIT(rcm, 1.3.3, mburns@thoughtbot.com)
AM_INIT_AUTOMAKE([subdir-objects])
# /bin/sh on Solaris is not POSIX, so try to find another one.