From 16aaf92455eb21a0c293cedb3a3fc8af44e50b70 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Tue, 20 Nov 2012 15:35:31 -0600 Subject: [PATCH] ruby-build 20121120 --- LICENSE | 2 +- README.md | 16 +++++++++++++++- bin/ruby-build | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 63c11cb6..c0507fdb 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011 Sam Stephenson +Copyright (c) 2012 Sam Stephenson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index 04d2898e..6ce33571 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,20 @@ include the full build log for build failures. ## Version History +#### 20121120 +* Added optional package checksum support. When a package URL is + annotated with an MD5 checksum, ruby-build will use it to verify + the contents of the downloaded file. Package URLs in all existing + definitions have been updated with checksum annotations. +* Added an optional package download cache. When the + `RUBY_BUILD_CACHE_PATH` environment variable is set to a directory + of your choice, ruby-build will store downloaded packages there and + reuse them for future installations. +* Added mirror support for faster package downloads. Packages on the + official ruby-build mirror will be served via S3. You can point + ruby-build to your own local package mirror by setting the + `RUBY_BUILD_MIRROR_URL` environment variable. + #### 20121110 * Added a definition for Ruby 1.9.3-p327 * Fetch Ruby 2.0.0.dev and 1.9.3.dev via Git instead of Subversion @@ -339,7 +353,7 @@ include the full build log for build failures. (The MIT License) -Copyright (c) 2011 Sam Stephenson +Copyright (c) 2012 Sam Stephenson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/bin/ruby-build b/bin/ruby-build index c04f0f10..96407e62 100755 --- a/bin/ruby-build +++ b/bin/ruby-build @@ -1,6 +1,6 @@ #!/usr/bin/env bash -RUBY_BUILD_VERSION="20121110" +RUBY_BUILD_VERSION="20121120" set -E exec 3<&2 # preserve original stderr at fd 3