aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-27 07:34:39 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-11-27 07:34:39 +0100
commit00ad52afa5f76cf5c48e7b91fb11c6637529fec9 (patch)
tree022727fc1b13ab322d7544a6797729cb756cf340
parentUpdated Vagrant configuration file. (diff)
downloadnewspipe-00ad52afa5f76cf5c48e7b91fb11c6637529fec9.tar.gz
newspipe-00ad52afa5f76cf5c48e7b91fb11c6637529fec9.tar.bz2
newspipe-00ad52afa5f76cf5c48e7b91fb11c6637529fec9.zip
Now using Wily server for Vagrant.
-rw-r--r--documentation/conf.py4
-rw-r--r--vagrant/Vagrantfile2
2 files changed, 3 insertions, 3 deletions
diff --git a/documentation/conf.py b/documentation/conf.py
index a849ee66..8a381a7c 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -48,9 +48,9 @@ copyright = u'2015, Cédric Bonhomme'
# built documents.
#
# The short X.Y version.
-version = '6.2'
+version = '6.7'
# The full version, including alpha/beta/rc tags.
-release = '6.2'
+release = '6.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index 3fec477f..ad1d874d 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -11,7 +11,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "Just Another RSS Reader"
- config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box"
+ config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/wily/current/wily-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.provision :shell, path: "bootstrap.sh"
# Disable automatic box update checking. If you disable this, then
bgstack15