From c53594534e13ccc12eaa02bf540e56a1b0532e44 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Thu, 7 Oct 2021 21:51:38 +0200 Subject: [PATCH] 1.6 --- README.md | 7 ++----- mix.exs | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 53ef4f2b..fd187c76 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ ![Elixir CI](https://github.com/ahamez/protox/workflows/Elixir%20CI/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/ahamez/protox/badge.svg?branch=master)](https://coveralls.io/github/ahamez/protox?branch=master) [![Hex Docs](https://img.shields.io/badge/hex-docs-brightgreen.svg)](https://hexdocs.pm/protox/) [![Hex.pm Version](http://img.shields.io/hexpm/v/protox.svg)](https://hex.pm/packages/protox) [![License](https://img.shields.io/hexpm/l/protox.svg)](https://github.com/ahamez/protox/blob/master/LICENSE) -> **This README is for the current development version, which is not the currently published version [1.5.1](https://hex.pm/packages/protox)**. You can find the -docs for the latest published version of `protox` [here](https://hexdocs.pm/protox/readme.html). - `protox` is an Elixir library to work with [Google's Protocol Buffers](https://developers.google.com/protocol-buffers), versions 2 and 3. It supports both binary and JSON encoding and decoding ([well-known types](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf) included, except the Any type for the time being). The primary objective of `protox` is **reliability**: it uses [property based testing](https://github.com/alfert/propcheck) and has a [near 100% code coverage](https://coveralls.io/github/ahamez/protox?branch=master). Also, using [mutation testing](https://en.wikipedia.org/wiki/Mutation_testing) with the invaluable help of [Muzak pro](https://devonestes.com/muzak), the quality of the `protox` test suite has been validated. Therefore, `protox` [passes all the tests](#conformance) of the conformance checker provided by Google. @@ -69,7 +66,7 @@ Add `:protox` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:protox, "~> 1.5"}] + [{:protox, "~> 1.6"}] end ``` @@ -78,7 +75,7 @@ If you plan to use the JSON encoding, you'll need to add [`Jason`](https://githu ```elixir def deps do [ - {:protox, "~> 1.5"}, + {:protox, "~> 1.6"}, {:jason, "~> 1.2"} ] end diff --git a/mix.exs b/mix.exs index 840f1e2d..47c6f542 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Protox.Mixfile do def project do [ app: :protox, - version: "1.6.0-dev", + version: "1.6.0", elixir: "~> 1.7", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,