File tree Expand file tree Collapse file tree 5 files changed +28
-6
lines changed Expand file tree Collapse file tree 5 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
+
7
+ ## [ v1.1.0] ( https://github.com/cabol/shards/tree/v1.1.0 ) (2022-11-25)
8
+
9
+ [ Full Changelog] ( https://github.com/cabol/shards/compare/v1.0.1...v1.1.0 )
10
+
11
+ ** Implemented enhancements:**
12
+
13
+ - Add helper functions for storing and retrieving custom metadata
14
+ [ 814ebf1] ( https://github.com/cabol/shards/commit/814ebf1f12e0a9e17ee2788ad8dbe4627b5c1d9b ) .
15
+ - Overall fixes, updates, and improvements
16
+ [ 474ca04] ( https://github.com/cabol/shards/commit/474ca045d26e38aa33ca19b65d9ec180eb31b0c5 ) .
17
+ - Add rebar3_ex_doc for generating docs
18
+ [ 5070f4a] ( https://github.com/cabol/shards/commit/5070f4a9538ae8280f28860738579b8c8678ebd5 ) .
19
+
3
20
## [ v1.0.1] ( https://github.com/cabol/shards/tree/v1.0.1 ) (2020-11-07)
4
21
5
22
[ Full Changelog] ( https://github.com/cabol/shards/compare/v1.0.0...v1.0.1 )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ and the **[online documentation](https://hexdocs.pm/shards/)**.
30
30
[ partitioning ] : https://en.wikipedia.org/wiki/Partition_(database)
31
31
[ dht ] : https://en.wikipedia.org/wiki/Distributed_hash_table
32
32
[ shards ] : https://hexdocs.pm/shards/shards.html
33
- [ getting_started ] : https://hexdocs.pm/shards/getting-started.md
33
+ [ getting_started ] : https://hexdocs.pm/shards/getting-started.html
34
34
35
35
## Installation
36
36
@@ -40,7 +40,7 @@ In your `rebar.config`:
40
40
41
41
``` erlang
42
42
{deps , [
43
- {shards , " ~> 1.0" }
43
+ {shards , " 1. 1.0" }
44
44
]}.
45
45
```
46
46
@@ -50,7 +50,7 @@ In your `mix.exs`:
50
50
51
51
``` elixir
52
52
def deps do
53
- [{:shards , " ~> 1.0 " }]
53
+ [{:shards , " ~> 1.1 " }]
54
54
end
55
55
```
56
56
Original file line number Diff line number Diff line change
1
+ # Steps for publishing new version
2
+
3
+ 1 . Update version in ` src/shards.app.src `
4
+ 2 . Run ` rebar3 hex publish ` (requires https://hexdocs.pm/rebar3_hex )
5
+ 3 . Run ` rebar3 hex publish docs ` (requires https://hexdocs.pm/rebar3_ex_doc )
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ In your `rebar.config`:
29
29
30
30
``` erlang
31
31
{deps , [
32
- {shards , " ~> 1.0" }
32
+ {shards , " 1. 1.0" }
33
33
]}.
34
34
```
35
35
@@ -39,7 +39,7 @@ In your `mix.exs`:
39
39
40
40
``` elixir
41
41
def deps do
42
- [{:shards , " ~> 1.0 " }]
42
+ [{:shards , " ~> 1.1 " }]
43
43
end
44
44
```
45
45
Original file line number Diff line number Diff line change 1
1
{application , shards , [
2
2
{description , " Erlang/Elixir library for partitioned or sharded ETS tables." },
3
- {vsn , " 1.0.1 " },
3
+ {vsn , " 1.1.0 " },
4
4
{registered , []},
5
5
{applications , [
6
6
kernel ,
You can’t perform that action at this time.
0 commit comments