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

update specinfra to v2.87.0 from v2.86.0 #21

Merged
merged 1 commit into from
Oct 27, 2023
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
3 changes: 3 additions & 0 deletions mrblib/specinfra/command.rb
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ module Command
# require 'specinfra/command/amazon/v2022/service'
# require 'specinfra/command/amazon/v2022/yumrepo'

# Amazon Linux V2023 (inherit Amazon Linux V2022)
# require 'specinfra/command/amazon/v2023'

# AIX (inherit Base)
# require 'specinfra/command/aix'
# require 'specinfra/command/aix/base'
Expand Down
2 changes: 2 additions & 0 deletions mrblib/specinfra/command/amazon/v2023.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class Specinfra::Command::Amazon::V2023 < Specinfra::Command::Amazon::V2022
end
2 changes: 1 addition & 1 deletion mrblib/specinfra/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Specinfra
VERSION = "2.86.0"
VERSION = "2.87.0"
end
2 changes: 1 addition & 1 deletion update_specinfra.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# 1. Update SPECINFRA_VERSION
# 2. Run ./update_specinfra.rb
SPECINFRA_REPO = 'mizzy/specinfra'
SPECINFRA_VERSION = 'v2.86.0'
SPECINFRA_VERSION = 'v2.87.0'

module GitHubFetcher
def self.fetch(repo, tag:, path:)
Expand Down