Skip to content

Commit

Permalink
Upgrade redis to 6.2.14 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
anilkumarmyla authored Dec 1, 2023
1 parent 92eb596 commit 802f8a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build_scripts/update_redis_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import tempfile


redis_version = os.environ.get('REDIS_VERSION', '6.2.9')
redis_version = os.environ.get('REDIS_VERSION', '6.2.14')
url = f'http://download.redis.io/releases/redis-{redis_version}.tar.gz'


Expand Down
2 changes: 1 addition & 1 deletion screwdriver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ shared:
environment:
CHANGELOG_FILENAME: docs/source/topic/changelog.md
PACKAGE_DIRECTORY: redislite
REDIS_VERSION: '6.2.9'
REDIS_VERSION: '6.2.14'
TOX_ENVLIST: py38,py39,py310,py311
steps:
- postinit_os: build_scripts/update_redis_server.py
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ project_urls =
Documentation = https://redislite.readthedocs.io/en/latest/
Source = https://github.com/yahoo/redislite
url = https://github.com/yahoo/redislite
version = 6.2.9
version = 6.2.14

[options]
install_requires=
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
BASEPATH = os.path.dirname(os.path.abspath(__file__))
REDIS_PATH = os.path.join(BASEPATH, 'redis.submodule')
REDIS_SERVER_METADATA = {}
REDIS_VERSION = os.environ.get('REDIS_VERSION', '6.2.7')
REDIS_VERSION = os.environ.get('REDIS_VERSION', '6.2.14')
REDIS_URL = f'http://download.redis.io/releases/redis-{REDIS_VERSION}.tar.gz'
install_scripts = ''
try:
Expand Down

0 comments on commit 802f8a0

Please sign in to comment.