Skip to content

Commit ac39e81

Browse files
authored
Merge pull request #182 from MissionCriticalCloud/release/v1.5.0
Prepare release v1.5.0
2 parents 6ed3055 + 3763010 commit ac39e81

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 1.5.0 (17 Oct 2018)
2+
3+
**Implemented enhancements:**
4+
5+
- Provide human readable error when `sync_resource` cannot sync name-\>id [\#163](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/163)
6+
- Deduplicate code in read\_\[ssh|winrm|rdp\]\_info [\#150](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/150)
7+
- CloudStack acquire Public IP address [\#87](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/87)
8+
9+
**Fixed bugs:**
10+
11+
- Make vagrant-cloudstack able to run in \(Docker\) container [\#157](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/157)
12+
13+
**Closed issues:**
14+
15+
- Write Code Once [\#172](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/172)
16+
- Template name used is mis-reported [\#56](https://github.com/MissionCriticalCloud/vagrant-cloudstack/issues/56)
17+
18+
**Merged pull requests:**
19+
20+
- Fix the travis setup. [\#179](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/179) ([greut](https://github.com/greut))
21+
- Update Vagrant to 2.0.3, unbork bundler. [\#178](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/178) ([greut](https://github.com/greut))
22+
- Add testing for different scenarios for basic zone implementation [\#176](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/176) ([bheuvel](https://github.com/bheuvel))
23+
- Refactoring of run\_instance, config and added testing [\#175](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/175) ([bheuvel](https://github.com/bheuvel))
24+
- Unit testing covering a \(most\) basic VM deployment [\#174](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/174) ([bheuvel](https://github.com/bheuvel))
25+
- Refactor read info classes using a super class [\#173](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/173) ([bheuvel](https://github.com/bheuvel))
26+
- Improve error message/handling [\#170](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/170) ([bheuvel](https://github.com/bheuvel))
27+
- Don't set network\_ids when using basic networking [\#168](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/168) ([hrak](https://github.com/hrak))
28+
- Pin kitchen-vagrant and vagrant-winrm [\#167](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/167) ([bheuvel](https://github.com/bheuvel))
29+
- Fix user dependency [\#165](https://github.com/MissionCriticalCloud/vagrant-cloudstack/pull/165) ([bheuvel](https://github.com/bheuvel))
30+
131
# 1.4.0 (Nov 30, 2016)
232
* Support multiple network ids and network names (PR #148)
333
* Add ssh_network_id and ssh_network_name configuration (PR #149)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ GIT
2424
PATH
2525
remote: .
2626
specs:
27-
vagrant-cloudstack (1.4.0)
27+
vagrant-cloudstack (1.5.0)
2828
fog (>= 1.32.0)
2929
fog-xml (>= 0.1.2)
3030

build_rpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
VERSION=1.4.0
2+
VERSION=1.5.0
33
mkdir -p /tmp/vagrant-cloudstack-build_rpm.$$/vagrant-cloudstack-$VERSION
44
cp -r . /tmp/vagrant-cloudstack-build_rpm.$$/vagrant-cloudstack-$VERSION/
55
tar -C /tmp/vagrant-cloudstack-build_rpm.$$/ -czf ~/rpmbuild/SOURCES/vagrant-cloudstack-$VERSION.tar.gz vagrant-cloudstack-$VERSION

lib/vagrant-cloudstack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module VagrantPlugins
22
module Cloudstack
3-
VERSION = '1.4.0'
3+
VERSION = '1.5.0'
44
end
55
end

0 commit comments

Comments
 (0)