Skip to content

Commit a7906cf

Browse files
committed
Bump version to 1.1.0
1 parent 8d2e02c commit a7906cf

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33

44
# packetgen-plugin-ipsec
55

6-
**Warning:** this repository is a work-in-progress. It will be available with packetgen3.
7-
86
This is a plugin for [PacketGen gem](https://github.com/sdaubert/packetgen). It adds two protocols:
97

108
* `PacketGen::Plugin::ESP`: IP Encapsulating Security Payload ([RFC 4303](https://tools.ietf.org/html/rfc4303)),
119
* `PacketGen::Plugin::IKE`: Internet Key Exchange v2 ([RFC 7296](https://tools.ietf.org/html/rfc7296)).
1210

11+
Versions 1.0.x are compatible with PacketGen 3.x.
12+
13+
Versions 1.1.x are compatible with PacketGen 4.x.
14+
1315
## Installation
1416

1517
Add this line to your application's Gemfile:
@@ -20,11 +22,15 @@ gem 'packetgen-plugin-ipsec'
2022

2123
And then execute:
2224

23-
$ bundle
25+
```bash
26+
bundle
27+
```
2428

2529
Or install it yourself as:
2630

27-
$ gem install packetgen-plugin-ipsec
31+
```bash
32+
gem install packetgen-plugin-ipsec
33+
```
2834

2935
## Usage
3036

@@ -86,12 +92,12 @@ pkt.to_w
8692

8793
## See also
8894

89-
API documentation: http://www.rubydoc.info/gems/packetgen-plugin-ipsec
95+
API documentation: <http://www.rubydoc.info/gems/packetgen-plugin-ipsec>
9096

9197
## License
9298

9399
MIT License (see [LICENSE](https://github.com/sdaubert/packetgen-plugin-ipsec/blob/master/LICENSE))
94100

95101
## Contributing
96102

97-
Bug reports and pull requests are welcome on GitHub at https://github.com/sdaubert/packetgen-plugin-ipsec.
103+
Bug reports and pull requests are welcome on GitHub at <https://github.com/sdaubert/packetgen-plugin-ipsec>.

lib/packetgen/plugin/ipsec_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
module PacketGen
99
module Plugin
1010
# Version of ipsec plugin
11-
IPSEC_VERSION = '1.0.3'
11+
IPSEC_VERSION = '1.1.0'
1212
end
1313
end

packetgen-plugin-ipsec.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
1818
end
1919
spec.require_paths = ['lib']
2020

21-
spec.required_ruby_version = '>= 2.5.0'
21+
spec.required_ruby_version = '>= 3.0.0'
2222

2323
spec.add_dependency 'packetgen', '~>4.0'
2424
end

0 commit comments

Comments
 (0)