zypper 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +10 -6
  2. data/VERSION +1 -1
  3. data/lib/zypper/utils.rb +1 -1
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,9 +1,13 @@
1
- 0.2.1 (2012-06-26)
2
- ------------------
1
+ 0.2.2
2
+ -----
3
+ * Fixed last_exit_status method and thus all methods returning boolean
4
+
5
+ 0.2.1
6
+ -----
3
7
  * Debugging output turned off
4
8
 
5
- 0.2.0 (2012-06-26)
6
- ------------------
9
+ 0.2.0
10
+ -----
7
11
  * Split into smaller one-task libraries
8
12
  * Added plural aliases for for accessing subclasses (patch -> patches,
9
13
  package -> packages, ...)
@@ -12,8 +16,8 @@
12
16
  * Added testsuites
13
17
  * Packaging into gem
14
18
 
15
- 0.1.0 (2012-06-20)
16
- ------------------
19
+ 0.1.0
20
+ -----
17
21
  * Initial implementation using POpen4
18
22
  * Added Services and Repositories handling
19
23
  * Added Packages and Packages handling
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/lib/zypper/utils.rb CHANGED
@@ -182,7 +182,7 @@ module ZypperUtils
182
182
  self.last_error_message = stderr.read.strip
183
183
  end
184
184
 
185
- last_exit_status = cmd_ret.exitstatus
185
+ self.last_exit_status = cmd_ret.exitstatus
186
186
 
187
187
  if params[:get] == XML_COMMANDS_GET
188
188
  last_message
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zypper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lukas Ocilka