Packages

MySQL Protocol Server

Current section

2 Versions

Jump to

Compare versions

3 files changed
+6 additions
-8 deletions
  @@ -9,6 +9,7 @@ __Authors:__ "Manuel Rubio" ([`manuel@altenwald.com`](mailto:manuel@altenwald.co
9 9 [![Build Status](https://img.shields.io/travis/altenwald/myproto/master.svg)](https://travis-ci.org/altenwald/myproto)
10 10 [![Codecov](https://img.shields.io/codecov/c/github/altenwald/myproto.svg)](https://codecov.io/gh/altenwald/myproto)
11 11 [![License: EPL 1.1](https://img.shields.io/github/license/altenwald/myproto.svg)](https://raw.githubusercontent.com/altenwald/myproto/master/COPYING)
12 + [![Hex](https://img.shields.io/hexpm/v/myproto.svg)](https://hex.pm/packages/myproto)
12 13
13 14 MySQL Server Protocol in Erlang. This project let you implement the MySQL protocol for your server. Throught a MySQL connection you could send queries or fake a MySQL connection to do a proxy or whatever else.
14 15
  @@ -19,7 +20,6 @@ The system for tests use maps so, you have to use Erlang OTP 17+:
19 20
20 21 | Erlang Version | Support | Notes |
21 22 |:---|:---:|:---|
22 - | 20.0 | :heavy_check_mark: | Recommended if you use OTP 20 |
23 23 | 19.3 | :heavy_check_mark: | Recommended if you use OTP 19 |
24 24 | 19.2 | :heavy_check_mark: | |
25 25 | 19.1 | :heavy_check_mark: | |
  @@ -32,7 +32,6 @@ The system for tests use maps so, you have to use Erlang OTP 17+:
32 32 | 17.5 | :heavy_check_mark: | Recommended if you use OTP 17 |
33 33 | 17.4 | :heavy_check_mark: | |
34 34 | 17.3 | :x: | fail in SSL |
35 - | 17.2 | :x: | no tests available in Travis-CI |
36 35 | 17.1 | :heavy_check_mark: | |
37 36 | 17.0 | :heavy_check_mark: | |
38 37
  @@ -44,14 +43,13 @@ If you want to use, only add this in rebar.config:
44 43 ```erlang
45 44
46 45 {deps, [
47 - {myproto, ".*", {git, "git://github.com/altenwald/myproto.git", master}}
46 + {myproto, "0.3.1"}
48 47 ]}.
49 48
50 49 ```
51 50
52 51
53 52 ### <a name="Configuration">Configuration</a> ###
54 -
55 53 For configuration you can check [configure and running](http://github.com/altenwald/myproto/blob/master/doc/config.md) entry.
  @@ -1,5 +1,5 @@
1 1 {<<"name">>,<<"myproto">>}.
2 - {<<"version">>,<<"0.3.1">>}.
2 + {<<"version">>,<<"0.3.2">>}.
3 3 {<<"requirements">>,
4 4 #{<<"neotoma">> =>
5 5 #{<<"app">> => <<"neotoma">>,<<"optional">> => false,
  @@ -18,5 +18,5 @@
18 18 <<"src/my_datatypes.erl">>,<<"src/my_packet.erl">>,<<"src/my_request.erl">>,
19 19 <<"src/my_response.erl">>,<<"src/myproto_app.erl">>]}.
20 20 {<<"licenses">>,[<<"LGPL 2.1">>]}.
21 - {<<"links">>,[{<<"Github">>,<<"https://github.com/altenwald/sqlparser">>}]}.
21 + {<<"links">>,[{<<"Github">>,<<"https://github.com/altenwald/myproto">>}]}.
22 22 {<<"build_tools">>,[<<"rebar3">>]}.
  @@ -1,6 +1,6 @@
1 1 {application,myproto,
2 2 [{description,"MySQL Protocol Server"},
3 - {vsn,"0.3.1"},
3 + {vsn,"0.3.2"},
4 4 {registered,[]},
5 5 {applications,[kernel,stdlib,sqlparser]},
6 6 {mod,{myproto_app,[]}},
  @@ -11,4 +11,4 @@
11 11 {handler,my_dummy_handler}]},
12 12 {maintainers,["Manuel Rubio"]},
13 13 {licenses,["LGPL 2.1"]},
14 - {links,[{"Github","https://github.com/altenwald/sqlparser"}]}]}.
14 + {links,[{"Github","https://github.com/altenwald/myproto"}]}]}.