autoproj 1.7.19 → 1.7.20

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ = Version 1.7.20
2
+ * do not generate an error if an unknown package is used as an optional
3
+ dependency. The rationale is that one can then have optional features that
4
+ are only present if other package sets are included (as e.g. the presence or
5
+ not of RTT as a package, i.e. the rock.toolchain package set)
6
+
1
7
  = Version 1.7.19
2
8
  * use different colors for remote-only and local-only commits in autoproj
3
9
  status
@@ -136,7 +136,7 @@ module Autobuild
136
136
  def partition_optional_dependencies
137
137
  packages, osdeps, disabled = [], [], []
138
138
  optional_dependencies.each do |name|
139
- if !Autoproj.manifest.package_enabled?(name)
139
+ if !Autoproj.manifest.package_enabled?(name, false)
140
140
  disabled << name
141
141
  next
142
142
  end
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.7.19"
2
+ VERSION = "1.7.20"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- hash: 45
4
+ hash: 35
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 7
9
- - 19
10
- version: 1.7.19
9
+ - 20
10
+ version: 1.7.20
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sylvain Joyeux