Skip to content

Commit

Permalink
Fix brew install and travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
silviucpp committed Mar 8, 2024
1 parent dcb6159 commit 5e28f84
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ matrix:

- os: linux
dist: focal
otp_release: 24.3.1
otp_release: 25.2.1

- os: linux
dist: jammy
otp_release: 25.2.1
otp_release: 26.1.1

- os: osx
osx_image: xcode12.4
osx_image: xcode13.4
language: generic
env:
- HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=true
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### Changelog:

#### 2.1.5

- Bug fixing: brew install causing undesired updates and crashing other Homebrew pkgs (https://github.com/silviucpp/erlkaf/issues/68)
- Update travis config

#### 2.1.4

- Bug fixing: avoid assigning partitions if consumer is not running (https://github.com/silviucpp/erlkaf/pull/60)
Expand Down
1 change: 1 addition & 0 deletions build_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ BuildLibrary()
$LIBRDKAFKA_DESTINATION)
case $OS in
Darwin)
export HOMEBREW_NO_AUTO_UPDATE=1
brew install [email protected] lz4 zstd curl
OPENSSL_ROOT_DIR=$(brew --prefix [email protected])
export CPPFLAGS=-I$OPENSSL_ROOT_DIR/include/
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{project_plugins, [rebar3_hex]}.

{deps, [
{jsone, "1.7.0"},
{jsone, "1.8.1"},
{esq, "2.0.6"}
]}.

Expand Down
6 changes: 3 additions & 3 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{"1.2.0",
[{<<"datum">>,{pkg,<<"datum">>,<<"4.6.1">>},1},
{<<"esq">>,{pkg,<<"esq">>,<<"2.0.6">>},0},
{<<"jsone">>,{pkg,<<"jsone">>,<<"1.7.0">>},0},
{<<"jsone">>,{pkg,<<"jsone">>,<<"1.8.1">>},0},
{<<"pipe">>,{pkg,<<"pipes">>,<<"2.0.1">>},1},
{<<"uid">>,{pkg,<<"uid">>,<<"1.3.4">>},1}]}.
[
{pkg_hash,[
{<<"datum">>, <<"93B131203A60CFEA9FFFF6435A50DC24239F689DFEBB76E6AECF6CE689EFE8F4">>},
{<<"esq">>, <<"9917E1A731C609B42624A4BB8594A25D537EA30E7B55D46CD46FA1B95E6DB675">>},
{<<"jsone">>, <<"1E3BD7D5DD44BB2EB0797DDDEA1CBF2DDAB8D9F29E499A467CA171C23F5984EA">>},
{<<"jsone">>, <<"6BC74D3863D55D420077346DA97C601711017A057F2FD1DF65D6D65DD562FBAB">>},
{<<"pipe">>, <<"A2B56796C63690ED0E78BB77BB389AF250BD70AFA15A6869369DBDC11087D68F">>},
{<<"uid">>, <<"42E30E22908E8E2FAA6227E9C261F1954CB540BE3C5A139E112369AE6CC451FC">>}]},
{pkg_hash_ext,[
{<<"datum">>, <<"E14340F8280FEDB1731D5CD6E9F5AEAA14B880C51F0B3DC16C42C6671C167E4D">>},
{<<"esq">>, <<"3B798DA50C508FE93248DBBD64D3D2CB618CAB5387E66515AB83CADF2B1ABAC1">>},
{<<"jsone">>, <<"A3A33712EE6BC8BE10CFA21C7C425A299DE4C5A8533F9F931E577A6D0E8F5DBD">>},
{<<"jsone">>, <<"C78918124148C51A7A84C678E39BBC6281F8CB582F1D88584628A98468E99738">>},
{<<"pipe">>, <<"623357A158E4C33EE589D4C735DDBAB9C77A04E85159192E4D42F1DC97C60BD9">>},
{<<"uid">>, <<"F8388EF93B16A5D5F9977E1FE814AE0ACF5529B1E0EE5D7B18D23CB4C0F87EAA">>}]}
].
2 changes: 1 addition & 1 deletion src/erlkaf.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{description, "erlkaf - Erlang Kafka library based on librdkafka"},
{licenses, ["MIT"]},
{links,[{"Github","https://github.com/silviucpp/erlkaf"}]},
{vsn, "2.1.4"},
{vsn, "2.1.5"},
{registered, []},
{applications, [
kernel,
Expand Down

0 comments on commit 5e28f84

Please sign in to comment.