Compare commits

..

1 Commits

Author SHA1 Message Date
mariuslp
202df57131 docs: update wsl installation procedure (#9968)
This is a 🔦 documentation change.

## Summary

The install documentation for WSL offers to install Ruby through
BrightBox. However, BrightBox does not support Ubuntu Jammy (which is
the default for latest WSL builds). Instead, this commit just redirects
the WSL user to the Ubuntu installation procedure to avoid duplicate
documentation.
2026-04-22 09:49:27 -05:00
4 changed files with 4 additions and 49 deletions

View File

@@ -1,3 +1,3 @@
{
".": "5.0.0"
".": "4.4.1"
}

View File

@@ -34,23 +34,6 @@
* Add .ruby-lsp to default excludes (#9914)
* Allow configuring future metadata for individual collections (#9925)
## [5.0.0](https://github.com/jekyll/jekyll/compare/v4.4.1...v5.0.0) (2026-04-22)
### ⚠ BREAKING CHANGES
* Streamline the release process for Jekyll ([#9760](https://github.com/jekyll/jekyll/issues/9760))
### Features
* Allowing post_url tag to receive liquid variables ([#9776](https://github.com/jekyll/jekyll/issues/9776)) ([79a8e16](https://github.com/jekyll/jekyll/commit/79a8e16f22991c7c4a00b510ec599c17c14785f0))
* Streamline the release process for Jekyll ([#9760](https://github.com/jekyll/jekyll/issues/9760)) ([5cf05d7](https://github.com/jekyll/jekyll/commit/5cf05d7d092f22b0229fd02f7879a2480d0d2618))
### Bug Fixes
* Run release-please workflow only in jekyll/jekyll repo ([#9969](https://github.com/jekyll/jekyll/issues/9969)) ([d68f76e](https://github.com/jekyll/jekyll/commit/d68f76e160fdc4e04905797226700d67f8149009))
## 4.4.1 / 2025-01-29
### Bug Fixes

View File

@@ -45,37 +45,9 @@ You must have [Windows Subsystem for Linux](https://msdn.microsoft.com/en-us/com
Make sure all your packages and repositories are up to date. Open a new Command Prompt or PowerShell window and type `bash`.
Your terminal should now be a Bash instance. Next, update your repository lists and packages:
Your terminal should now be a Bash instance. Then, [follow the installation procedure for Ubuntu](https://jekyllrb.com/docs/installation/ubuntu/).
```sh
sudo apt-get update -y && sudo apt-get upgrade -y
```
Next, install Ruby. To do this, let's use a repository from [BrightBox](https://www.brightbox.com/docs/ruby/ubuntu/),
which hosts optimized versions of Ruby for Ubuntu.
```sh
sudo apt-add-repository ppa:brightbox/ruby-ng
sudo apt-get update
sudo apt-get install ruby2.5 ruby2.5-dev build-essential dh-autoreconf
```
Next, update your Ruby gems:
```sh
gem update
```
Install Jekyll:
```sh
gem install jekyll bundler
```
{: .note .info}
No `sudo` here.
Check your Jekyll version:
Once this is done, check your Jekyll version:
```sh
jekyll -v

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Jekyll
VERSION = "5.0.0"
VERSION = "4.4.1"
end