Skip to content

Commit 28fa000

Browse files
committed
Release v1.1.0
1 parent 5070f4a commit 28fa000

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
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)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
5252
def deps do
53-
[{:shards, "~> 1.0"}]
53+
[{:shards, "~> 1.1"}]
5454
end
5555
```
5656

RELEASE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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)

guides/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
4141
def deps do
42-
[{:shards, "~> 1.0"}]
42+
[{:shards, "~> 1.1"}]
4343
end
4444
```
4545

src/shards.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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,

0 commit comments

Comments
 (0)