Skip to content

Commit

Permalink
Merge pull request #86 from tsellers-r7/bump_recog
Browse files Browse the repository at this point in the history
Require Recog 2.3.21,  bump for release of dap 1.2.9
  • Loading branch information
tsellers-r7 authored Aug 4, 2021
2 parents e5ceb49 + fad7296 commit 5bfef22
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

# Ignore geoip data file
data/geoip.dat
data/GeoLite2-ASN.mmdb
data/GeoLite2-City.mmdb
data/GeoLite2-Country.mmdb

/pkg/

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.testing
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:20.04

ENV TEST_DIR /opt/bats_testing

Expand All @@ -14,7 +14,7 @@ RUN /bin/bash -l -c "rvm requirements"
RUN /bin/bash -l -c "rvm install 2.4.5"
RUN /bin/bash -l -c "rvm use 2.4.5 && gem update --system && gem install bundler"
ADD Gemfile* $TEST_DIR/
RUN /bin/bash -l -c "cd $TEST_DIR && rvm use 2.4.5 && bundle install"
RUN /bin/bash -l -c "cd $TEST_DIR && rvm use 2.4.5 && bundle update --bundler && bundle install"

# install maxmind legacy data
RUN mkdir /var/lib/geoip
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem 'net-dns'
gem 'bit-struct'
gem 'geoip-c'
gem 'maxmind-db', '~> 1.0.0'
gem 'recog', '>=2.3.8'
gem 'recog', '>=2.3.21'

group :test do
gem 'rspec', '~> 3.9.0'
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ GEM
minitest (5.14.2)
multi_test (0.1.2)
net-dns (0.9.0)
nokogiri (1.10.9)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
oj (3.10.6)
protobuf-cucumber (3.10.8)
activesupport (>= 3.2)
middleware
thor
thread_safe
recog (2.3.8)
recog (2.3.21)
nokogiri
rspec (3.9.0)
rspec-core (~> 3.9.0)
Expand Down Expand Up @@ -95,7 +95,7 @@ DEPENDENCIES
maxmind-db (~> 1.0.0)
net-dns
oj
recog (>= 2.3.8)
recog (>= 2.3.21)
rspec (~> 3.9.0)

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion lib/dap/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Dap
VERSION = "1.2.8"
VERSION = "1.2.9"
end

0 comments on commit 5bfef22

Please sign in to comment.