From 433042b517d20cfadf4729b2a9b89a67e12d18dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=CC=81zsef=20Kozma?= Date: Tue, 24 Jan 2017 15:29:15 +0100 Subject: [PATCH] fix(build): fix dependency versions in travis and readme too --- .travis.yml | 8 ++++---- README.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2bda1b1..68f8862 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,11 +20,11 @@ before_install: install: - luarocks install --server=http://luarocks.org/dev openssl - luarocks install luasec OPENSSL_LIBDIR=/usr/lib/x86_64-linux-gnu - - luarocks install luafilesystem + - luarocks install luafilesystem 1.6.3-2 - luarocks install busted - - luarocks install rapidjson - - luarocks install luacrypto - - luarocks install date + - luarocks install rapidjson 0.4.5-1 + - luarocks install luacrypto 0.3.2-2 + - luarocks install date 2.1.1-1 script: - busted spec diff --git a/README.md b/README.md index e30f724..a1da789 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ Some tips to setup the local development environment on a Mac: brew install lua brew install cmake brew install openssl -luarocks-5.2 install luafilesystem +luarocks-5.2 install luafilesystem 1.6.3-2 luarocks-5.2 install busted -luarocks-5.2 install rapidjson -luarocks-5.2 install date -luarocks-5.2 install luacrypto OPENSSL_INCDIR=/usr/local/Cellar/openssl/1.0.2c/include +luarocks-5.2 install rapidjson 0.4.5-1 +luarocks-5.2 install luacrypto 0.3.2-2 OPENSSL_INCDIR=/usr/local/Cellar/openssl/1.0.2j/include +luarocks-5.2 install date 2.1.1-1 ```