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

Release 1.0.0.0 #2

Merged
merged 1 commit into from
Jun 6, 2024
Merged
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
Release 1.0.0.0
arybczak committed Jun 6, 2024
commit cd7872b39bee87406e3a180366a5c4b40500ec5f
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# hedis-effectful-1.0.0.0 (2023-10-23)
# hedis-effectful-1.0.0.0 (2024-06-07)
* Initial release.
2 changes: 1 addition & 1 deletion src/Effectful/Redis.hs
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ data Redis :: Effect where

type instance DispatchOf Redis = Dynamic

-- | Run the redis effect.
-- | Run the 'Redis' effect.
runRedis :: IOE :> es => R.Connection -> Eff (Redis : es) a -> Eff es a
runRedis conn = interpret $ \_ -> \case
LiftRedis action -> liftIO $ R.runRedis conn action