Skip to content

Commit

Permalink
Merge branch 'master' into gha
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico authored Aug 11, 2023
2 parents 9ab25a9 + 8e7347f commit d0cd1f7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
Changelog
=========

6.0.10.1 (unreleased)
---------------------
6.0.11 (unreleased)
-------------------

- Use Varnish 6.0.11 LTS. [maurits]

- Allow to configure storages other than file and malloc (https://varnish-cache.org/docs/trunk/users-guide/storage-backends.html)
[mamico]
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
rm -r ./lib ./include ./local ./bin
virtualenv -p python2.7 --clear .
virtualenv -p python2.7 .
./bin/pip install --upgrade -r requirements.txt
./bin/buildout
4 changes: 2 additions & 2 deletions plone/recipe/varnish/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import zc.buildout


DOWNLOAD_URL = "https://varnish-cache.org/_downloads/varnish-6.0.10.tgz"
DOWNLOAD_URL = "https://varnish-cache.org/_downloads/varnish-6.0.11.tgz"
VMODS_DOWNLOAD_URL = "https://github.com/varnish/varnish-modules/archive/0.15.1.tar.gz"
SUPPORTED_VERSION = "6.0.10"
SUPPORTED_VERSION = "6.0.11"

COOKIE_WHITELIST_DEFAULT = """\
statusmessages
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run_tests(self):

# versioning scheme: major/minor (positions 1-2) matches: supported varnish 6.0 LTS.
# position 3: plone.recipe.varnish patch release X.
version = "6.0.10.1.dev0"
version = '6.0.11.dev0'

setup(
name="plone.recipe.varnish",
Expand Down

0 comments on commit d0cd1f7

Please sign in to comment.