Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
Bump version for 0.8.4!
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesrwhite committed Dec 20, 2015
1 parent b3d5a24 commit fa4647c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```
Expand Down Expand Up @@ -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
````
Expand Down
6 changes: 3 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
apt-get update
apt-get install -y libsqlite3-dev wget unzip
wget https://github.com/jamesrwhite/minicron/releases/download/v0.8.3/minicron-0.8.3-linux-x86_64.zip > minicron.zip
unzip -o minicron-0.8.3-linux-x86_64.zip
export PATH=~/minicron-0.8.3-linux-x86_64:$PATH
wget https://github.com/jamesrwhite/minicron/releases/download/v0.8.4/minicron-0.8.4-linux-x86_64.zip > minicron.zip
unzip -o minicron-0.8.4-linux-x86_64.zip
export PATH=~/minicron-0.8.4-linux-x86_64:$PATH
ufw allow 2222
ufw allow 9292
ufw enable
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e

VERSION="0.8.3"
VERSION="0.8.4"

echo "Installing mincron v$VERSION"
echo "OS input as $OS"
Expand Down
2 changes: 1 addition & 1 deletion lib/minicron/constants.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The minicron module
module Minicron
BINARY_NAME = 'minicron'
VERSION = '0.8.3'
VERSION = '0.8.4'
DEFAULT_CONFIG_FILE = '/etc/minicron.toml'
BASE_PATH = File.expand_path('../../../', __FILE__)
LIB_PATH = File.expand_path('../../', __FILE__)
Expand Down
2 changes: 1 addition & 1 deletion minicron.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

VERSION = '0.8.3'
VERSION = '0.8.4'

Gem::Specification.new do |spec|
spec.name = 'minicron'
Expand Down

0 comments on commit fa4647c

Please sign in to comment.