Skip to content

Commit

Permalink
Use [email protected] in mac os.
Browse files Browse the repository at this point in the history
  • Loading branch information
silviucpp committed Nov 23, 2021
1 parent 55c6875 commit cdef92d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ before_script:
- if [[ $TRAVIS_OS_NAME == linux ]]; then sudo apt-get install -y g++ make cmake libssl-dev libuv1-dev || true ; fi

- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then brew install erlang libuv cmake openssl || true; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then brew install erlang libuv cmake openssl@1.1 || true; fi

- curl https://s3.amazonaws.com/rebar3/rebar3 --output rebar3 && chmod +x rebar3

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Changelog:

##### v4.0.4

- Speed up builds, use shallow clone for `cpp-driver`
- Upgrade cpp-driver to v2.16.1
- Use [email protected] in MacOS.

##### v4.0.3

- Fix for OTP 24 build
Expand Down
4 changes: 2 additions & 2 deletions build_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ case $OS in
;;

Darwin)
brew install libuv cmake openssl
export OPENSSL_ROOT_DIR=$(brew --prefix openssl)
brew install libuv cmake openssl@1.1
export OPENSSL_ROOT_DIR=$(brew --prefix openssl@1.1)
export OPENSSL_INCLUDE_DIR=$OPENSSL_ROOT_DIR/include/
export OPENSSL_LIBRARIES=$OPENSSL_ROOT_DIR/lib
;;
Expand Down
2 changes: 1 addition & 1 deletion src/erlcass.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{description, "ErlCass - Erlang Cassandra Driver"},
{licenses, ["MIT"]},
{links,[{"Github","https://github.com/silviucpp/erlcass"}]},
{vsn, "4.0.3"},
{vsn, "4.0.4"},
{registered, []},
{applications, [kernel, stdlib, lager]},
{mod, {erlcass_app, []}},
Expand Down

0 comments on commit cdef92d

Please sign in to comment.