pio 0.28.0 → 0.28.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60e79f351fee115f951c0959d67808d09f50aabd
4
- data.tar.gz: 4ce3f74667ac4b8c89f96e9ca6de53b4e6ba6bad
3
+ metadata.gz: 3df44da54a5ee6b53635131992a450e190d5878d
4
+ data.tar.gz: 756b740f33b744bf2af1468c65723a3b0ec7795c
5
5
  SHA512:
6
- metadata.gz: 2096ae71388686504dc50bdcea0a49679f641d174161e48068b64714473fdf6a57932d8fed835d7cdd7f3bf4e86c12e0e27acd1324d1315a0f912ed37807f8d2
7
- data.tar.gz: 424e8a76bbba2c3ce01aea01b17c3c36f7e42cd93db506eeda8fa800bbaa9446c0f91cf755e9d1438b4f4ad992b034c18bcfc6cae6ab6bbd6785707e5382daaf
6
+ metadata.gz: 5c84d89664314ffa03b6333cd1bc0d3e5a2798de80c2272e521ea9bd051a7642d860c6cc1e2a903873c7a6069717add82d41fd47f64b06059f813fa5f82730e6
7
+ data.tar.gz: 956ae82279e9b19da9857eea93c6f622c505c669535dec2960ab9e3b849e2f1c363df065a64d158bd641f2853fac61368e24575b50f547fa2bcd5ecebab400bd
data/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@
3
3
  ## develop (unreleased)
4
4
 
5
5
 
6
+ ## 0.28.1 (11/5/2015)
7
+ ### Changes
8
+ * Remove `OpenFlow10` namespace from `Pio::OpenFlow10::SetSourceMacAddress` and `Pio::OpenFlow10::SetDestinationMacAddress`.
9
+
10
+
6
11
  ## 0.28.0 (11/5/2015)
7
12
  ### New features
8
13
  * [#267](https://github.com/trema/pio/pull/267): Add Queue Stats Request message generator.
@@ -1,10 +1,10 @@
1
1
  @open_flow10
2
- Feature: Pio::OpenFlow10::SetDestinationMacAddress
2
+ Feature: Pio::SetDestinationMacAddress
3
3
 
4
4
  Scenario: new('11:22:33:44:55:66')
5
5
  When I try to create an OpenFlow action with:
6
6
  """
7
- Pio::OpenFlow10::SetDestinationMacAddress.new('11:22:33:44:55:66')
7
+ Pio::SetDestinationMacAddress.new('11:22:33:44:55:66')
8
8
  """
9
9
  Then it should finish successfully
10
10
  And the action has the following fields and values:
@@ -1,10 +1,10 @@
1
1
  @open_flow10
2
- Feature: Pio::OpenFlow10::SetSourceMacAddress
2
+ Feature: Pio::SetSourceMacAddress
3
3
 
4
4
  Scenario: new('11:22:33:44:55:66')
5
5
  When I try to create an OpenFlow action with:
6
6
  """
7
- Pio::OpenFlow10::SetSourceMacAddress.new('11:22:33:44:55:66')
7
+ Pio::SetSourceMacAddress.new('11:22:33:44:55:66')
8
8
  """
9
9
  Then it should finish successfully
10
10
  And the action has the following fields and values:
data/lib/pio/open_flow.rb CHANGED
@@ -16,9 +16,10 @@ module Pio
16
16
 
17
17
  def self.switch_version(version)
18
18
  [:Barrier, :Echo, :Features, :FlowMod, :Hello, :Match,
19
- :PacketIn, :FlowRemoved, :PacketOut, :SendOutPort, :PortStatus,
20
- :Stats, :FlowStats, :DescriptionStats, :AggregateStats,
21
- :TableStats, :PortStats, :QueueStats, :Error, :NiciraResubmit,
19
+ :PacketIn, :FlowRemoved, :PacketOut, :SendOutPort,
20
+ :SetSourceMacAddress, :SetDestinationMacAddress, :PortStatus, :Stats,
21
+ :FlowStats, :DescriptionStats, :AggregateStats, :TableStats, :PortStats,
22
+ :QueueStats, :Error, :NiciraResubmit,
22
23
  :NiciraResubmitTable].each do |each|
23
24
  set_message_class_name each, version
24
25
  @version = version.to_s
data/lib/pio/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # Base module.
2
2
  module Pio
3
3
  # gem version.
4
- VERSION = '0.28.0'.freeze
4
+ VERSION = '0.28.1'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.28.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasuhito Takamiya