Skip to content
Open
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: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ The format is based on [Keep a Changelog], and this project adheres to
- Display Tags diff (stack tags) in `stack_master diff` and `stack_master apply` commands. ([#397])
- Resolve style issues identified by RuboCop. ([#396])
- Test on Ruby 4.0 in the CI build ([#399]).
- Minor fixups in gem metadata ([#400]).

[Unreleased]: https://github.com/envato/stack_master/compare/v2.17.1...HEAD
[#396]: https://github.com/envato/stack_master/pull/396
[#397]: https://github.com/envato/stack_master/pull/397
[#398]: https://github.com/envato/stack_master/pull/398
[#399]: https://github.com/envato/stack_master/pull/399
[#400]: https://github.com/envato/stack_master/pull/400

## [2.17.1] - 2025-12-19

Expand Down
9 changes: 5 additions & 4 deletions stack_master.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ Gem::Specification.new do |spec|
spec.summary = 'StackMaster is a sure-footed way of creating, updating and keeping track ' \
'of Amazon (AWS) CloudFormation stacks.'
spec.description = ''
spec.homepage = 'https://opensource.envato.com/projects/stack_master.html'
spec.homepage = 'https://github.com/envato/stack_master'
spec.license = 'MIT'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/envato/stack_master/issues',
'changelog_uri' => 'https://github.com/envato/stack_master/blob/master/CHANGELOG.md',
'allowed_push_host' => 'https://rubygems.org',
'bug_tracker_uri' => "#{spec.homepage}/issues",
'changelog_uri' => "#{spec.homepage}/blob/master/CHANGELOG.md",
'documentation_uri' => "https://www.rubydoc.info/gems/stack_master/#{spec.version}",
'source_code_uri' => "https://github.com/envato/stack_master/tree/v#{spec.version}"
'source_code_uri' => "#{spec.homepage}/tree/v#{spec.version}"
}

spec.files = Dir.glob('{bin,lib,stacktemplates}/**/*') + %w[README.md LICENSE.txt]
Expand Down