Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i40: Support for Redis 6.2.0 #41

Draft
wants to merge 20 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: runner.os != 'Windows'
uses: shogo82148/actions-setup-redis@v1
with:
redis-version: "4.x"
redis-version: "6.x"

- name: Start Redis (windows)
if: runner.os == 'Windows'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Start Redis
uses: shogo82148/actions-setup-redis@v1
with:
redis-version: "4.x"
redis-version: "6.x"

- name: "[macOS] system dependencies"
if: runner.os == 'macOS'
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ autobrew
docs/
doc
Meta
*.so
*.o
*.gcov
*.gcda
*.gcno
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: redux
Title: R Bindings to 'hiredis'
Version: 1.1.2
Version: 1.2.0
Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
email = "[email protected]"))
Description: A 'hiredis' wrapper that includes support for
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE := $(shell grep '^Package:' DESCRIPTION | sed -E 's/^Package:[[:space:]]+//')
RSCRIPT = Rscript --no-init-file
RSCRIPT = Rscript

all: compile_dll

Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## redux 1.2.0

* Add support for most of the new features in redis 6.x

## redux 1.1.1

* More relaxed, though technically incorrect, URL parsing that allows undercores in the host name - useful for docker containers (#20).
Expand Down
Loading