From fa4647c40a6ccfda0717794f23008164c9c52536 Mon Sep 17 00:00:00 2001 From: James White Date: Sun, 20 Dec 2015 00:03:08 +0000 Subject: [PATCH] Bump version for 0.8.4! --- Dockerfile | 6 +++--- README.md | 6 +++--- Vagrantfile | 6 +++--- install.sh | 2 +- lib/minicron/constants.rb | 2 +- minicron.gemspec | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b72af3a..0886675e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,11 +8,11 @@ RUN apt-get update && apt-get install -y \ unzip # Get the latest minicron release -RUN wget https://github.com/jamesrwhite/minicron/releases/download/v0.8.3/minicron-0.8.3-linux-x86_64.zip -RUN unzip -o minicron-0.8.3-linux-x86_64.zip +RUN wget https://github.com/jamesrwhite/minicron/releases/download/v0.8.4/minicron-0.8.4-linux-x86_64.zip +RUN unzip -o minicron-0.8.4-linux-x86_64.zip # Add minicron folder to $PATH -ENV PATH=/minicron-0.8.3-linux-x86_64:$PATH +ENV PATH=/minicron-0.8.4-linux-x86_64:$PATH # Expose minicron on port 9292 EXPOSE 9292 diff --git a/README.md b/README.md index 2f82a795..e7e02335 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ instead. 1. First check you meet the [requirements](#requirements) -2. Either [grab the latest](https://github.com/jamesrwhite/minicron/releases/tag/v0.8.3) zip/tarball for your OS, use +2. Either [grab the latest](https://github.com/jamesrwhite/minicron/releases/tag/v0.8.4) zip/tarball for your OS, use the handy [install script](https://github.com/jamesrwhite/minicron/blob/develop/install.sh) (where `OS` is one of: osx, linux-x86, linux-x86_64) ``` @@ -149,8 +149,8 @@ You can also run minicron in a docker container, see below for instructions how: ````bash git clone https://github.com/jamesrwhite/minicron.git cd minicron -docker build -t minicron-0.8.3 . -docker run -d -p 127.0.0.1:9292:9292 -i -t minicron-0.8.3 +docker build -t minicron-0.8.4 . +docker run -d -p 127.0.0.1:9292:9292 -i -t minicron-0.8.4 docker ps | grep minicron docker exec *container_hash* minicron server start ```` diff --git a/Vagrantfile b/Vagrantfile index 695157cd..04d8ce31 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,9 +5,9 @@ VAGRANTFILE_API_VERSION = "2" $script = <