From 75c6c0d699e326b5fdc90d726b57acf122ea6f1c Mon Sep 17 00:00:00 2001 From: elssar Date: Mon, 15 Aug 2016 15:03:57 +0530 Subject: [PATCH 1/3] Update newman in ubuntu_1404 image to 3.0.0 --- images/ubuntu1404/Dockerfile | 2 +- images/ubuntu1404/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/ubuntu1404/Dockerfile b/images/ubuntu1404/Dockerfile index 017115f..4630c2c 100644 --- a/images/ubuntu1404/Dockerfile +++ b/images/ubuntu1404/Dockerfile @@ -14,7 +14,7 @@ RUN npm install -g n; RUN n ${NODE_VERSION}; # Set newman version -ENV NEWMAN_VERSION 2.1.2 +ENV NEWMAN_VERSION 3.0.0 # Install newman RUN npm install -g newman@${NEWMAN_VERSION}; diff --git a/images/ubuntu1404/README.md b/images/ubuntu1404/README.md index cb4e47f..36c8e34 100644 --- a/images/ubuntu1404/README.md +++ b/images/ubuntu1404/README.md @@ -1,6 +1,6 @@ # newman_ubuntu1404 -This image runs newman 2.1.2 on node 4.3.0 on Ubuntu 14.04.2 +This image runs newman 3.0.0 on node 4.3.0 on Ubuntu 14.04.2 Build the image, @@ -11,7 +11,7 @@ docker build -t postman/newman_ubuntu1404 . Or get it from [docker hub](https://registry.hub.docker.com/u/postman/newman_ubuntu1404/) ```terminal -docker pull postman/newman_ubuntu1404:2.1.2 +docker pull postman/newman_ubuntu1404:3.0.0 ``` then run it From b9a5cd649df579c5811a42ded7da5afd2e4a6893 Mon Sep 17 00:00:00 2001 From: elssar Date: Mon, 15 Aug 2016 15:04:30 +0530 Subject: [PATCH 2/3] Update newman in alpine33 image to 3.0.0 --- images/alpine33/Dockerfile | 2 +- images/alpine33/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/alpine33/Dockerfile b/images/alpine33/Dockerfile index bc1b564..b395429 100644 --- a/images/alpine33/Dockerfile +++ b/images/alpine33/Dockerfile @@ -8,7 +8,7 @@ ENV NODE_VERSION 4.3.0 RUN apk add --update nodejs=${NODE_VERSION}-r0; # Set newman version -ENV NEWMAN_VERSION 2.1.2 +ENV NEWMAN_VERSION 3.0.0 # Install newman RUN npm install -g newman@${NEWMAN_VERSION}; diff --git a/images/alpine33/README.md b/images/alpine33/README.md index f519e4f..1de2c86 100644 --- a/images/alpine33/README.md +++ b/images/alpine33/README.md @@ -1,6 +1,6 @@ # newman_alpine33 -This image runs newman 2.1.2 on node 4.3.0 on Alpine 3.3 +This image runs newman 3.0.0 on node 4.3.0 on Alpine 3.3 Build the image, @@ -11,7 +11,7 @@ docker build -t postman/newman_alpine33 . Or get it from [docker hub](https://registry.hub.docker.com/u/postman/newman_alpine33/) ```terminal -docker pull postman/newman_alpine33:2.1.2 +docker pull postman/newman_alpine33:3.0.0 ``` then run it From 4226ca3fd05fbd87fb3218e303ee87688883bc2e Mon Sep 17 00:00:00 2001 From: elssar Date: Mon, 15 Aug 2016 17:11:33 +0530 Subject: [PATCH 3/3] Bump up version to 3.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b2f2080..4d016ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "newman-docker", - "version": "2.1.2", + "version": "3.0.0", "description": "This repository contains the Dockerfiles and tests for the Newman Docker images.", "scripts": { "docker-build": "./scripts/docker/docker-build.sh",