From 42ec5c58a69b15892e1bf2ae00930e87dc7baa24 Mon Sep 17 00:00:00 2001 From: "Jonathan M. Henson" Date: Tue, 25 Jun 2019 15:30:19 -0700 Subject: [PATCH] Updated version number for crt to v0.4.4 (#49) * Updated version number for crt to v0.4.4 * Forgot to update the build scripts. * Updated to v0.4.5. --- README.md | 2 +- codebuild/common-posix.sh | 2 +- codebuild/common-windows.bat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4cf37e178..59d1de21a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ is provided by code that been generated from a model of the service. ## Build from source ``` -git clone --branch v0.4.2 https://github.com/awslabs/aws-crt-cpp.git +git clone --branch v0.4.5 https://github.com/awslabs/aws-crt-cpp.git git clone https://github.com/awslabs/aws-iot-device-sdk-cpp-v2.git mkdir aws-crt-cpp-build cd aws-crt-cpp-build diff --git a/codebuild/common-posix.sh b/codebuild/common-posix.sh index d8d45093e..538201e12 100755 --- a/codebuild/common-posix.sh +++ b/codebuild/common-posix.sh @@ -17,7 +17,7 @@ fi # build aws-crt-cpp pushd $BUILD_PATH -git clone --branch v0.4.0 https://github.com/awslabs/aws-crt-cpp.git +git clone --branch v0.4.5 https://github.com/awslabs/aws-crt-cpp.git cd aws-crt-cpp cmake $CMAKE_ARGS -DBUILD_DEPS=ON ./ cmake --build . --target install diff --git a/codebuild/common-windows.bat b/codebuild/common-windows.bat index 4a5b99eed..14056cdff 100755 --- a/codebuild/common-windows.bat +++ b/codebuild/common-windows.bat @@ -8,7 +8,7 @@ mkdir %INSTALL_DIR% @rem build aws-crt-cpp mkdir %BUILDS_DIR%\aws-crt-cpp-build cd %BUILDS_DIR%\aws-crt-cpp-build -git clone --branch v0.4.0 https://github.com/awslabs/aws-crt-cpp.git +git clone --branch v0.4.5 https://github.com/awslabs/aws-crt-cpp.git cmake %CMAKE_ARGS% -DCMAKE_INSTALL_PREFIX="%INSTALL_DIR%" -DCMAKE_PREFIX_PATH="%INSTALL_DIR%" -DCMAKE_BUILD_TYPE="Release" -DBUILD_DEPS=ON aws-crt-cpp || goto error cmake --build . --target install || goto error