Current section

113 Versions

Jump to

Compare versions

4 files changed
+8 additions
-7 deletions
  @@ -30,7 +30,8 @@ Why "brod"? [http://en.wikipedia.org/wiki/Max_Brod](http://en.wikipedia.org/wiki
30 30
31 31 ## Building and testing
32 32
33 - NOTE: Min Erlang/OTP version 22
33 + - Min Erlang/OTP version 24
34 + - CMake 4 which is required to build NIF for [crc32cer](https://github.com/kafka4beam/crc32cer)
34 35
35 36 ```sh
36 37 make compile
  @@ -1,5 +1,5 @@
1 1 {<<"app">>,<<"brod">>}.
2 - {<<"build_tools">>,[<<"rebar3">>]}.
2 + {<<"build_tools">>,[<<"rebar3">>,<<"cmake">>]}.
3 3 {<<"description">>,<<"Apache Kafka Erlang client library">>}.
4 4 {<<"files">>,
5 5 [<<"LICENSE">>,<<"Makefile">>,<<"NOTICE">>,<<"README.md">>,<<"include">>,
  @@ -23,5 +23,5 @@
23 23 [{<<"kafka_protocol">>,
24 24 [{<<"app">>,<<"kafka_protocol">>},
25 25 {<<"optional">>,false},
26 - {<<"requirement">>,<<"4.2.7">>}]}]}.
27 - {<<"version">>,<<"4.4.5">>}.
26 + {<<"requirement">>,<<"4.2.8">>}]}]}.
27 + {<<"version">>,<<"4.4.6">>}.
  @@ -1,4 +1,4 @@
1 - {deps, [{kafka_protocol, "4.2.7"}]}.
1 + {deps, [{kafka_protocol, "4.2.8"}]}.
2 2 {project_plugins, [{rebar3_lint, "~> 3.2.5"}]}.
3 3 {edoc_opts, [{preprocess, true}]}.
4 4 {erl_opts, [warnings_as_errors, warn_unused_vars,warn_shadow_vars,warn_obsolete_guard,debug_info]}.
  @@ -1,6 +1,6 @@
1 1 {application,brod,
2 2 [{description,"Apache Kafka Erlang client library"},
3 - {vsn,"4.4.5"},
3 + {vsn,"4.4.6"},
4 4 {registered,[]},
5 5 {applications,[kernel,stdlib,kafka_protocol]},
6 6 {env,[]},
  @@ -8,6 +8,6 @@
8 8 {modules,[]},
9 9 {licenses,["Apache License 2.0"]},
10 10 {links,[{"Github","https://github.com/kafka4beam/brod"}]},
11 - {build_tools,["rebar3"]},
11 + {build_tools,["rebar3","cmake"]},
12 12 {files,["src","include","rebar.config","rebar.config.script",
13 13 "README.md","LICENSE","NOTICE","Makefile"]}]}.