From 892861d5b5bc8df87c213704851169ccef4500b1 Mon Sep 17 00:00:00 2001 From: Bob Aman Date: Fri, 2 Jul 2021 19:08:37 -0700 Subject: [PATCH] Drop Ruby 2.0 and 2.1 support --- .github/workflows/test.yml | 24 ------------------------ CHANGELOG.md | 1 + 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 311072a2..df4e8307 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -67,29 +67,6 @@ jobs: - name: Run specs and report coverage run: bundle exec rake - test-ruby-2_0: - runs-on: ubuntu-20.04 - container: - image: ruby:2.0 - env: - LANG: C.UTF-8 - steps: - - uses: actions/checkout@v2 - - - name: Install libidn - run: | - apt-get update - apt-get install -y libidn11-dev - - - name: Install bundler 1.17.3 - run: gem install bundler -v 1.17.3 - - - name: Install gems - run: bundle install - - - name: Run specs - run: bundle exec rake - test: runs-on: ${{ matrix.os }} strategy: @@ -97,7 +74,6 @@ jobs: matrix: # the job name is composed by these attributes ruby: - - 2.1 - 2.2 - 2.3 - 2.4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 654f3d78..dcf66a96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # Addressable 2.8.0 +- dropping support for Ruby 2.0 and 2.1 - adding Ruby 3.0 compatibility for development tasks - drop support for `rack-mount` and remove related Addressable::Template#generate - switch CI/CD to GitHub Actions