Skip to content

Commit 92c9aad

Browse files
authored
Merge pull request #400 from envato/gem-metadata
Update gem metadata
2 parents 83632af + 518b0b9 commit 92c9aad

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,24 @@ The format is based on [Keep a Changelog], and this project adheres to
1010

1111
## [Unreleased]
1212

13+
[Unreleased]: https://github.com/envato/stack_master/compare/v2.18.0...HEAD
14+
15+
## [2.18.0] - 2026-02-02
16+
1317
### Changed
1418

1519
- Improve message when CloudFormation claims there are no changes to apply, even when a template diff is present. ([#398])
1620
- Display Tags diff (stack tags) in `stack_master diff` and `stack_master apply` commands. ([#397])
1721
- Resolve style issues identified by RuboCop. ([#396])
1822
- Test on Ruby 4.0 in the CI build ([#399]).
23+
- Minor fixups in gem metadata ([#400]).
1924

20-
[Unreleased]: https://github.com/envato/stack_master/compare/v2.17.1...HEAD
25+
[2.18.0]: https://github.com/envato/stack_master/compare/v2.17.1...v2.18.0
2126
[#396]: https://github.com/envato/stack_master/pull/396
2227
[#397]: https://github.com/envato/stack_master/pull/397
2328
[#398]: https://github.com/envato/stack_master/pull/398
2429
[#399]: https://github.com/envato/stack_master/pull/399
30+
[#400]: https://github.com/envato/stack_master/pull/400
2531

2632
## [2.17.1] - 2025-12-19
2733

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License MIT](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/envato/stack_master/blob/master/LICENSE.md)
44
[![Gem Version](https://badge.fury.io/rb/stack_master.svg)](https://badge.fury.io/rb/stack_master)
5-
[![Build Status](https://github.com/envato/stack_master/workflows/tests/badge.svg?branch=master)](https://github.com/envato/stack_master/actions?query=workflow%3Atests+branch%3Amaster)
5+
[![Build Status](https://github.com/envato/stack_master/actions/workflows/test.yml/badge.svg)](https://github.com/envato/stack_master/actions/workflows/test.yml)
66

77
StackMaster is a CLI tool to manage [CloudFormation](https://aws.amazon.com/cloudformation/) stacks, with the following features:
88

lib/stack_master/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module StackMaster
2-
VERSION = '2.17.1'
2+
VERSION = '2.18.0'
33
end

stack_master.gemspec

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ Gem::Specification.new do |spec|
1111
spec.summary = 'StackMaster is a sure-footed way of creating, updating and keeping track ' \
1212
'of Amazon (AWS) CloudFormation stacks.'
1313
spec.description = ''
14-
spec.homepage = 'https://opensource.envato.com/projects/stack_master.html'
14+
spec.homepage = "https://github.com/envato/#{spec.name}"
1515
spec.license = 'MIT'
1616
spec.metadata = {
17-
'bug_tracker_uri' => 'https://github.com/envato/stack_master/issues',
18-
'changelog_uri' => 'https://github.com/envato/stack_master/blob/master/CHANGELOG.md',
19-
'documentation_uri' => "https://www.rubydoc.info/gems/stack_master/#{spec.version}",
20-
'source_code_uri' => "https://github.com/envato/stack_master/tree/v#{spec.version}"
17+
'allowed_push_host' => 'https://rubygems.org',
18+
'bug_tracker_uri' => "#{spec.homepage}/issues",
19+
'changelog_uri' => "#{spec.homepage}/blob/master/CHANGELOG.md",
20+
'documentation_uri' => "https://www.rubydoc.info/gems/#{spec.name}/#{spec.version}",
21+
'source_code_uri' => "#{spec.homepage}/tree/v#{spec.version}"
2122
}
2223

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

0 commit comments

Comments
 (0)