diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2020-11-07 22:05:04 -0500 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2020-11-07 22:05:04 -0500 |
commit | 9036321dfaa8db84689c088fb48d85e9859967fc (patch) | |
tree | c509732e1e45d51f1f87e964c14fab923fe658dc | |
parent | add support for proxies, SSL options, and following redirects (diff) |
release 0.3.1
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | mix.exs | 2 |
3 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5857b3e..8d68d29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +0.3.1 +===== + +Features: + +- allow compressed server responses +- add support for specifying a proxy, SSL options, following redirects + 0.3.0 ===== @@ -1,6 +1,7 @@ # Polyjuice Client -Polyjuice Client is a [Matrix](https://matrix.org/) client library. +Polyjuice Client is a [Matrix](https://matrix.org/) client library. Also check +out [Polyjuice Util](https://hex.pm/packages/polyjuice_util/) for more functions. ## Installation @@ -10,7 +11,7 @@ dependencies in `mix.exs`: ```elixir def deps do [ - {:polyjuice_client, "~> 0.3.0"} + {:polyjuice_client, "~> 0.3.1"} ] end ``` @@ -5,7 +5,7 @@ defmodule PolyjuiceClient.MixProject do [ app: :polyjuice_client, description: "Client library for the Matrix.org communications protocol", - version: "0.3.0", + version: "0.3.1", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(), |