This is an automated email from the ASF dual-hosted git repository. grobmeier pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/logging-site.git
commit a521a2e414262b90153d2f51681f7e307e8ab12a Author: Piotr P. Karwasz <[email protected]> AuthorDate: Wed Mar 19 10:50:12 2025 +0100 Bump Jekyll to 4.4.1 --- Gemfile | 7 ++++++- run-jekyll.sh | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 7fb75e96..5902dd2e 100644 --- a/Gemfile +++ b/Gemfile @@ -22,7 +22,7 @@ source "https://rubygems.org" # # This will help ensure the proper Jekyll version is running. # Happy Jekylling! -gem "jekyll", "~> 4.2.2" +gem "jekyll", "~> 4.4.1" # This is the default theme for new Jekyll sites. You may change this to anything you like. gem "minima", "~> 2.5.2" @@ -42,3 +42,8 @@ group :jekyll_plugins do gem "jekyll-asciidoc", "~> 2.1.1" gem "jekyll-sass-converter", "~> 2.2.0" end + +# After upgrade to Jekyll 4.4 +gem "rouge", "~> 3.30" +gem "terminal-table", "~> 2.0" +gem "unicode-display_width", "~> 1.8" diff --git a/run-jekyll.sh b/run-jekyll.sh index de35e209..4d03ff21 100755 --- a/run-jekyll.sh +++ b/run-jekyll.sh @@ -13,4 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -docker run --rm -p 4000:4000 --mount type=bind,src=$PWD,dst=/root/build --mount type=volume,dst=/root/build/node_modules -it apache/logging_site serve --watch +docker run --rm -it\ + -p 4000:4000\ + --mount type=bind,src=$PWD,dst=/root/build\ + --mount type=volume,dst=/root/build/node_modules\ + apache/logging_site serve --watch
