Skip to content

Commit

Permalink
Release 0.1.1 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jammjammjamm authored May 3, 2023
1 parent 99fb43b commit 4300313
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ WORKDIR $INSTALL_PATH

ADD *.gemspec $INSTALL_PATH
ADD Gemfile* $INSTALL_PATH
ADD lib/ips/version.rb $INSTALL_PATH/lib/ips/version.rb
RUN gem install bundler
# The below RUN line is commented out for development purposes, because any change to the
# required gems will break the dockerfile build process.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ips_test_kit (0.1.0)
ips_test_kit (0.1.1)
inferno_core (>= 0.4.2)

GEM
Expand Down
4 changes: 3 additions & 1 deletion ips_test_kit.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
require_relative 'lib/ips/version'

Gem::Specification.new do |spec|
spec.name = 'ips_test_kit'
spec.version = '0.1.0'
spec.version = IPS::VERSION
spec.authors = ['MITRE']
spec.email = ['[email protected]']
spec.date = Time.now.utc.strftime('%Y-%m-%d')
Expand Down
2 changes: 1 addition & 1 deletion lib/ips/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module IPS
VERSION = '0.1.0'.freeze
VERSION = '0.1.1'.freeze
end

0 comments on commit 4300313

Please sign in to comment.