From 08ea4d8b56724a4fff8b0d1a01f95bc7d71ee2fd Mon Sep 17 00:00:00 2001 From: "Eric D. Helms" Date: Fri, 2 Jul 2021 08:08:02 -0400 Subject: [PATCH] Support 3.14, drop 3.13 --- .github/workflows/ci.yml | 2 +- README.md | 2 +- manifests/repo.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f01e1ac9..f866ef66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: setfile: ${{fromJson(needs.setup_matrix.outputs.beaker_setfiles)}} puppet: ${{fromJson(needs.setup_matrix.outputs.puppet_major_versions)}} pulpcore_version: - - '3.13' + - '3.14' name: Acceptance / ${{ matrix.puppet.name }} - ${{ matrix.setfile.name }} steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index d6e913ee..d9e8a623 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ All supported versions are listed below. For every supported version, acceptance Supported operating systems are listed in `metadata.json` but individual releases can divert from that. For example, if Pulpcore x.y drops EL7, it will still be listed in metadata.json until all versions supported by the module have dropped it. Similarly, if x.z adds support for EL9, it'll be listed in `metadata.json` and all versions that don't support EL9 will have a note. -### Pulpcore 3.13 +### Pulpcore 3.14 Only supported version. diff --git a/manifests/repo.pp b/manifests/repo.pp index b25de3db..63fe19b1 100644 --- a/manifests/repo.pp +++ b/manifests/repo.pp @@ -3,7 +3,7 @@ # @param version # The Pulpcore version to use class pulpcore::repo ( - Pattern['^\d+\.\d+$'] $version = '3.13', + Pattern['^\d+\.\d+$'] $version = '3.14', ) { $context = { 'version' => $version,