Skip to content

Commit 4001fe5

Browse files
committed
Bump version and add CONTRIBUTING.md
1 parent adaa51f commit 4001fe5

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## v1.4.1
4+
5+
June 2021.
6+
7+
* Restore support for rebar 2.
8+
* Optimize parser.
9+
310
## v1.4.0
411

512
June 2021.

CONTRIBUTING.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Contributing to eredis
2+
======================
3+
4+
Requirements: Erlang/OTP, rebar3 and make. For tests, also Docker and OpenSSL.
5+
6+
* `make test` runs the tests using Docker and generates TLS certificates using
7+
OpenSSL. If you can't run it or if some test (e.g. the IPv6 test) fails, it's
8+
fine as long as it passes in the automated builds.
9+
* When docs are affected, run `make edoc` and commit the changed Markdown files
10+
under `doc/`.
11+
* Don't update the version unless agreed with the maintainers.
12+
13+
Releasing a new version
14+
-----------------------
15+
16+
Normally done by the maintainers.
17+
18+
* Update the version in `src/eredis.app.src` and `mix.exs`.
19+
* Update CHANGELOG.md and add what's new since the last version. (Use e.g. `git
20+
log *PREV_VERSION*..HEAD`).
21+
* Check that documentation is generated and commited using `make edoc`.
22+
* Commit the changes, push and check the build.
23+
* Publish to Hex using `make publish` (requires `mix` and a Hex account with
24+
rights to publish this project). (This can be done later.)
25+
* Create an annotated tag on the form vMAJOR.MINOR.PATCH, `git tag -a v0.0.0`.
26+
Write a very short message with the most important changes (one line or a few
27+
bullets).
28+
* Push the tag using `git push --tags`.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Eredis.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/Nordix/eredis/"
5-
@version "1.4.0"
5+
@version "1.4.1"
66

77
def project do
88
[

src/eredis.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application,eredis,
22
[{description,"Erlang Redis Client"},
3-
{vsn,"1.4.0"},
3+
{vsn,"1.4.1"},
44
{modules,[eredis,eredis_client,eredis_parser,eredis_sub,
55
eredis_sub_client]},
66
{registered,[]},

0 commit comments

Comments
 (0)