Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PacketFu 1.1.12 didn't really drop PacketFu::UDPPacket #101

Merged
merged 1 commit into from
Mar 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# develop
* Drop support for Ruby < 2.3.0 - Too many gem dependences require Ruby 2.3, so go along with it rather than fight it
* Require PacketFu >= 1.1.13, 1.1.12 was just broken

# [0.7.2](https://github.com/mojolingo/sippy_cup/compare/v0.7.1...v0.7.2)
* Bugfix: Logical destination for dialog formation belongs in request line
Expand Down
2 changes: 1 addition & 1 deletion sippy_cup.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_runtime_dependency 'packetfu', ["= 1.1.11"] # 1.1.12 introduces a breaking change, removing PacketFu::UDPPacket
s.add_runtime_dependency 'packetfu', [">= 1.1.13"]
s.add_runtime_dependency 'nokogiri', ["~> 1.8.1"]
s.add_runtime_dependency 'activesupport', [">= 3.0"]
s.add_runtime_dependency 'psych', ["~> 2.0.1"] unless RUBY_PLATFORM == 'java'
Expand Down