-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rel: add Bundler 2.5 as the latest version to docs
2.5.0 was successfully released on 2023-12-15: https://rubygems.org/gems/bundler/versions/2.5.0 This also marks Bundler 2.1 as legacy. Signed-off-by: Takuya Noguchi <[email protected]>
- Loading branch information
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
- primary_commands = %w(bundle-install.1 bundle-update.1 bundle-cache.1 bundle-exec.1 bundle-config.1 bundle-help.1) | ||
|
||
.bg-light-blue.header | ||
= image_tag '/images/docs_header_transparent_bg.png', | ||
srcset: '/images/docs_header_transparent_bg.png 1x, /images/[email protected] 2x, /images/[email protected] 3x', | ||
class: 'img-fluid header-padding', | ||
style: 'max-width: 400px;' | ||
|
||
.container | ||
.row.docs.my-5 | ||
.col-md-6.col-12 | ||
%h3 | ||
%b Guides | ||
%p | ||
Step-by-step tutorials that include useful explanations and and detailed instructions to help you get up and running. | ||
%ul.ul-padding | ||
- guides.each do |guide| | ||
%li= link_to_guide guide | ||
%li= link_to "Contributing to Bundler", "/doc/readme.html" | ||
|
||
.col-md-5.offset-md-1.col-12 | ||
%h3 | ||
%b Reference Guides | ||
%p | ||
In-depth articles with information on each primary command and utility, and how to use them. | ||
%h4 | ||
%b Primary Commands | ||
%ul.ul-padding | ||
- primary_commands.select{ |page| path_exist?(page) }.each do |page| | ||
%li= link_to_documentation(page) | ||
|
||
%h4 | ||
%b Utilities | ||
%ul.ul-padding | ||
- other_commands(primary_commands).each do |page| | ||
%li= link_to_documentation(page) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# What's New in v2.5 | ||
|
||
As always, a detailed list of every change is provided in | ||
[the changelog](https://github.com/rubygems/rubygems/blob/3.5/bundler/CHANGELOG.md). | ||
|
||
## Breaking changes | ||
|
||
- Drop ruby 2.6 and 2.7 support [#7116](https://github.com/rubygems/rubygems/pull/7116) | ||
- The `:mswin`, `:mswin64`, `:mingw`, and `:x64_mingw` Gemfile `platform` values are soft-deprecated and aliased to `:windows` [#6391](https://github.com/rubygems/rubygems/pull/6391) | ||
|
||
<a href="https://github.com/rubygems/rubygems/blob/3.5/bundler/CHANGELOG.md" class="btn btn-primary">Full 2.5 changelog</a> |