Skip to content

Commit 4028557

Browse files
committed
Release v2.0.0-rc.1
1 parent 17ed5aa commit 4028557

File tree

8 files changed

+50
-30
lines changed

8 files changed

+50
-30
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,3 @@ jobs:
8282
8383
- name: Run dialyzer
8484
run: mix dialyzer --format short
85-
86-
- name: Doc Coverage Report
87-
run: MIX_ENV=docs mix inch.report

CHANGELOG.md

Lines changed: 35 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,69 @@
11
# Changelog
22

3+
## [v2.0.0-rc.1](https://github.com/cabol/nebulex_redis_adapter/tree/v2.0.0-rc.1) (2020-11-29)
4+
5+
[Full Changelog](https://github.com/cabol/nebulex_redis_adapter/compare/v1.1.1...v2.0.0-rc.1)
6+
7+
**Closed issues:**
8+
9+
- Compatiblity with nebulex v2.0.0 [#21](https://github.com/cabol/nebulex_redis_adapter/issues/21)
10+
- Update redix dependency version to `~> 0.11` [#19](https://github.com/cabol/nebulex_redis_adapter/issues/19)
11+
- Change redis address is invalid [#14](https://github.com/cabol/nebulex_redis_adapter/issues/14)
12+
13+
**Merged pull requests:**
14+
15+
- Overall fixes and enhancements [#24](https://github.com/cabol/nebulex_redis_adapter/pull/24)
16+
([cabol](https://github.com/cabol))
17+
- Migrate to Nebulex v2 [#23](https://github.com/cabol/nebulex_redis_adapter/pull/23)
18+
([cabol](https://github.com/cabol))
19+
- Fix a small typo in readme [#22](https://github.com/cabol/nebulex_redis_adapter/pull/22)
20+
([manusajith](https://github.com/manusajith))
21+
- [#19] redix `~> 0.11` [#20](https://github.com/cabol/nebulex_redis_adapter/pull/20)
22+
([diogommartins](https://github.com/diogommartins))
23+
324
## [v1.1.1](https://github.com/cabol/nebulex_redis_adapter/tree/v1.1.1) (2020-01-25)
425

526
[Full Changelog](https://github.com/cabol/nebulex_redis_adapter/compare/v1.1.0...v1.1.1)
627

728
**Closed issues:**
829

9-
- jchash.start undefined function [\#13](https://github.com/cabol/nebulex_redis_adapter/issues/13)
10-
- Can you release? [\#12](https://github.com/cabol/nebulex_redis_adapter/issues/12)
30+
- `jchash.start` undefined function [#13](https://github.com/cabol/nebulex_redis_adapter/issues/13)
31+
- Can you release? [#12](https://github.com/cabol/nebulex_redis_adapter/issues/12)
1132

1233
**Merged pull requests:**
1334

14-
- Compression of data in Redis [\#18](https://github.com/cabol/nebulex_redis_adapter/pull/18) ([vovayartsev](https://github.com/vovayartsev))
15-
- Replaced the redis FLUSHALL command by FLUSHDB [\#17](https://github.com/cabol/nebulex_redis_adapter/pull/17) ([Atlas42](https://github.com/Atlas42))
16-
- \[\#15\] Allow storing raw strings, not the whole `Nebulex.Object.t\(\)` [\#16](https://github.com/cabol/nebulex_redis_adapter/pull/16) ([cabol](https://github.com/cabol))
35+
- Compression of data in Redis [#18](https://github.com/cabol/nebulex_redis_adapter/pull/18)
36+
([vovayartsev](https://github.com/vovayartsev))
37+
- Replaced the redis FLUSHALL command by FLUSHDB [#17](https://github.com/cabol/nebulex_redis_adapter/pull/17)
38+
([Atlas42](https://github.com/Atlas42))
39+
- [#15] Allow storing raw strings, not the whole `Nebulex.Object.t()`
40+
[#16](https://github.com/cabol/nebulex_redis_adapter/pull/16) ([cabol](https://github.com/cabol))
1741

1842
## [v1.1.0](https://github.com/cabol/nebulex_redis_adapter/tree/v1.1.0) (2019-05-11)
1943

2044
[Full Changelog](https://github.com/cabol/nebulex_redis_adapter/compare/v1.0.0...v1.1.0)
2145

2246
**Implemented enhancements:**
2347

24-
- Default cluster support [\#10](https://github.com/cabol/nebulex_redis_adapter/issues/10)
48+
- Default cluster support [#10](https://github.com/cabol/nebulex_redis_adapter/issues/10)
2549

2650
**Closed issues:**
2751

28-
- Redis Clustering on Redis 4+ without Sentinel [\#8](https://github.com/cabol/nebulex_redis_adapter/issues/8)
52+
- Redis Clustering on Redis 4+ without Sentinel [#8](https://github.com/cabol/nebulex_redis_adapter/issues/8)
2953

3054
**Merged pull requests:**
3155

32-
- Cluster Support [\#11](https://github.com/cabol/nebulex_redis_adapter/pull/11) ([cabol](https://github.com/cabol))
56+
- Cluster Support [#11](https://github.com/cabol/nebulex_redis_adapter/pull/11) ([cabol](https://github.com/cabol))
3357

3458
## [v1.0.0](https://github.com/cabol/nebulex_redis_adapter/tree/v1.0.0) (2018-12-12)
3559

3660
[Full Changelog](https://github.com/cabol/nebulex_redis_adapter/compare/21160dbff1d8a6df333dc5c35fef46964649470b...v1.0.0)
3761

3862
**Implemented enhancements:**
3963

40-
- Add TravisCI support [\#7](https://github.com/cabol/nebulex_redis_adapter/issues/7)
41-
- Implement `Nebulex.Adapter.Transaction` interface [\#2](https://github.com/cabol/nebulex_redis_adapter/issues/2)
42-
- Implement `Nebulex.Adapter.Queryable` behaviour [\#1](https://github.com/cabol/nebulex_redis_adapter/issues/1)
64+
- Add TravisCI support [#7](https://github.com/cabol/nebulex_redis_adapter/issues/7)
65+
- Implement `Nebulex.Adapter.Transaction` interface [#2](https://github.com/cabol/nebulex_redis_adapter/issues/2)
66+
- Implement `Nebulex.Adapter.Queryable` behaviour [#1](https://github.com/cabol/nebulex_redis_adapter/issues/1)
4367

4468

4569

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
44
![CI](https://github.com/cabol/nebulex_redis_adapter/workflows/CI/badge.svg)
55
[![Coverage Status](https://coveralls.io/repos/github/cabol/nebulex_redis_adapter/badge.svg?branch=master)](https://coveralls.io/github/cabol/nebulex_redis_adapter?branch=master)
6-
[![Inline docs](http://inch-ci.org/github/cabol/nebulex_redis_adapter.svg)](http://inch-ci.org/github/cabol/nebulex_redis_adapter)
76
[![Hex Version](https://img.shields.io/hexpm/v/nebulex_redis_adapter.svg)](https://hex.pm/packages/nebulex_redis_adapter)
87
[![Docs](https://img.shields.io/badge/docs-hexpm-blue.svg)](https://hexdocs.pm/nebulex_redis_adapter)
98

@@ -27,7 +26,7 @@ defp deps do
2726
[
2827
{:nebulex_redis_adapter, "~> 2.0.0-rc.1"},
2928
{:crc, "~> 0.10"}, #=> Needed when using Redis Cluster
30-
{:jchash, "~> 0.1.2"} #=> NNeeded when using consistent-hashing
29+
{:jchash, "~> 0.1.2"} #=> Needed when using consistent-hashing
3130
]
3231
end
3332
```

config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
use Mix.Config
1+
import Config
22

33
import_config "#{Mix.env()}.exs"

config/dev.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use Mix.Config
1+
import Config

config/docs.exs

Lines changed: 0 additions & 1 deletion
This file was deleted.

config/test.exs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
use Mix.Config
1+
import Config
22

3-
# Redis Standalone
3+
# Standalone mode
44
config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.Standalone,
55
conn_opts: [
66
host: "127.0.0.1",
77
port: 6379
88
]
99

10-
# Redis test cache
10+
# Cluster mode
1111
config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.Cluster,
1212
mode: :cluster,
1313
nodes: [
@@ -31,7 +31,7 @@ config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.Cluster,
3131
]
3232
]
3333

34-
# Redis test clustered cache
34+
# Redis Cluster mode
3535
config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.RedisCluster,
3636
mode: :redis_cluster,
3737
master_nodes: [
@@ -50,7 +50,7 @@ config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.RedisCluster,
5050
host: "127.0.0.1"
5151
]
5252

53-
# Redis test clustered cache
53+
# Redis Cluster mode with errors
5454
config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.RedisClusterConnError,
5555
mode: :redis_cluster,
5656
pool_size: 2,
@@ -64,7 +64,7 @@ config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.RedisClusterConnErr
6464
host: "127.0.0.1"
6565
]
6666

67-
# Redis test clustered cache
67+
# Redis Cluster mode with custom Keyslot
6868
config :nebulex_redis_adapter, NebulexRedisAdapter.TestCache.RedisClusterWithKeyslot,
6969
mode: :redis_cluster,
7070
keyslot: NebulexRedisAdapter.TestCache.Keyslot,

mix.exs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule NebulexRedisAdapter.MixProject do
22
use Mix.Project
33

4-
@version "2.0.0-dev"
4+
@version "2.0.0-rc.1"
55

66
def project do
77
[
@@ -50,15 +50,16 @@ defmodule NebulexRedisAdapter.MixProject do
5050
{:jchash, "~> 0.1.2", optional: true},
5151

5252
# Test & Code Analysis
53-
{:benchee, "~> 1.0", only: :test},
54-
{:benchee_html, "~> 1.0", only: :test},
5553
{:excoveralls, "~> 0.13", only: :test},
5654
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
5755
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
5856

57+
# Benchmark Test
58+
{:benchee, "~> 1.0", only: :test},
59+
{:benchee_html, "~> 1.0", only: :test},
60+
5961
# Docs
60-
{:ex_doc, "~> 0.23", only: [:dev, :test], runtime: false},
61-
{:inch_ex, "~> 2.0", only: :docs}
62+
{:ex_doc, "~> 0.23", only: [:dev, :test], runtime: false}
6263
]
6364
end
6465

0 commit comments

Comments
 (0)