Skip to content

Commit

Permalink
Merge pull request #4008 from rubygems/merge_stable_back
Browse files Browse the repository at this point in the history
Merge rubygems 3.2.0.rc.2 and remove some stuff that was not actually released
  • Loading branch information
deivid-rodriguez committed Oct 9, 2020
2 parents e184844 + afb63c1 commit 97fa681
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
41 changes: 41 additions & 0 deletions History.txt
@@ -1,3 +1,44 @@
=== 3.2.0.rc.2 / 2020-10-8

Minor enhancements:

* Make --dry-run flag consistent across rubygems commands. Pull request
#3867 by bronzdoc
* Disallow downgrades to too old versions. Pull request #3566 by
deivid-rodriguez
* Added `--platform` option to `build` command. Pull request #3079 by nobu
* Have "gem update --system" pass through the `--silent` flag. Pull
request #3789 by duckinator
* Add writable check for cache dir. Pull request #3876 by xndcn
* Warn on duplicate dependency in a specification. Pull request #3864 by
bronzdoc
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
eregon

Bug fixes:

* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
* Fix false positive warning on Windows when PATH has
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
* Fix Kernel#warn override to handle backtrace location with nil path.
Pull request #3852 by jeremyevans
* Don't format executables on `gem update --system`. Pull request #3811 by
deivid-rodriguez
* `gem install --user` fails with `Gem::FilePermissionError` on the system
plugins directory. Pull request #3804 by nobu

Performance:

* Avoid duplicated generation of APISpecification objects. Pull request
#3940 by mame
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
casperisfine
* Deduplicate the requirement operators in memory. Pull request #3846 by
casperisfine
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine

=== 3.2.0.rc.1 / 2020-07-04

Major enhancements:
Expand Down
2 changes: 1 addition & 1 deletion lib/rubygems.rb
Expand Up @@ -8,7 +8,7 @@
require 'rbconfig'

module Gem
VERSION = "3.2.0.rc.1".freeze
VERSION = "3.2.0.rc.2".freeze
end

# Must be first since it unloads the prelude from 1.9.2
Expand Down
2 changes: 1 addition & 1 deletion rubygems-update.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = "rubygems-update"
s.version = "3.2.0.rc.1"
s.version = "3.2.0.rc.2"
s.authors = ["Jim Weirich", "Chad Fowler", "Eric Hodel", "Luis Lavena", "Aaron Patterson", "Samuel Giddins", "André Arko", "Evan Phoenix", "Hiroshi SHIBATA"]
s.email = ["", "", "drbrain@segment7.net", "luislavena@gmail.com", "aaron@tenderlovemaking.com", "segiddins@segiddins.me", "andre@arko.net", "evan@phx.io", "hsbt@ruby-lang.org"]

Expand Down

0 comments on commit 97fa681

Please sign in to comment.