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 11# Changelog
22
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+
320## [ v1.0.1] ( https://github.com/cabol/shards/tree/v1.0.1 ) (2020-11-07)
421
522[ 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/)**.
3030[ partitioning ] : https://en.wikipedia.org/wiki/Partition_(database)
3131[ dht ] : https://en.wikipedia.org/wiki/Distributed_hash_table
3232[ 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
3434
3535## Installation
3636
@@ -40,7 +40,7 @@ In your `rebar.config`:
4040
4141``` erlang
4242{deps , [
43- {shards , " ~> 1.0" }
43+ {shards , " 1. 1.0" }
4444]}.
4545```
4646
@@ -50,7 +50,7 @@ In your `mix.exs`:
5050
5151``` elixir
5252def deps do
53- [{:shards , " ~> 1.0 " }]
53+ [{:shards , " ~> 1.1 " }]
5454end
5555```
5656
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`:
2929
3030``` erlang
3131{deps , [
32- {shards , " ~> 1.0" }
32+ {shards , " 1. 1.0" }
3333]}.
3434```
3535
@@ -39,7 +39,7 @@ In your `mix.exs`:
3939
4040``` elixir
4141def deps do
42- [{:shards , " ~> 1.0 " }]
42+ [{:shards , " ~> 1.1 " }]
4343end
4444```
4545
Original file line number Diff line number Diff line change 11{application , shards , [
22 {description , " Erlang/Elixir library for partitioned or sharded ETS tables." },
3- {vsn , " 1.0.1 " },
3+ {vsn , " 1.1.0 " },
44 {registered , []},
55 {applications , [
66 kernel ,
You can’t perform that action at this time.
0 commit comments