sashimi_tanpopo 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4cb5f08e4ea1b3f4a7dea92a3fc242ce77894fe0d6d610a48aab10e5b4bc3f99
4
- data.tar.gz: ef6c01d72528207f0cad5961f894efbc38b885fdd0b425166245ac3c89c8fda4
3
+ metadata.gz: 5b601594298bcbff56d16d990111eccabc3d203aba608232577ddc20ab795c81
4
+ data.tar.gz: 51a8838571d9e4a4eeb6ebcd317fce18644d72813d8de7cafb03be33dedd833f
5
5
  SHA512:
6
- metadata.gz: 99ea3fc4cd53589883c574b56052a2c0147a5f238b698e748edd07330209cbcb84a49aeafbe7930ff9e29bb66f3859428eea9fffea2e719ddb283d7a7f96759b
7
- data.tar.gz: 259c452fbeb224fa6b2c8a150429c028c6fff5f3d7c45659166d5de4a69ec9b6c058025be147fd75175f0d837b44bc86fc3a47f2dab5a5344be10de4710780e0
6
+ metadata.gz: dff61357e4df01e146b400dfbef42a20e5918b3781b20b101eceefda24ee118a49c7b6bca0a0c4b5844f6f17fb92db0f624f1db6d64573cfb673c3c7b7657e87
7
+ data.tar.gz: ffdbdc3490dc5a23324e1e67e065b16cee18823732fda3ed49a22a9518f099f8124d9a56192aeea8a3ecbc17e986eec8d15a038c4ff9a989f107505786926e1c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
- [full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.3.0...main)
2
+ [full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.3.1...main)
3
+
4
+ ## [0.3.1](https://github.com/sue445/sashimi_tanpopo/releases/tag/v0.3.1) - 2025-10-31
5
+ [full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.3.0...v0.3.1)
6
+
7
+ * Disable file existence checks when using `--github-step-summary`
8
+ * https://github.com/sue445/sashimi_tanpopo/pull/66
3
9
 
4
10
  ## [0.3.0](https://github.com/sue445/sashimi_tanpopo/releases/tag/v0.3.0) - 2025-10-30
5
11
  [full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.2.0...v0.3.0)
data/Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
1
  ARG RUBY_VERSION=3.4
2
2
  FROM ruby:${RUBY_VERSION}-alpine
3
3
 
4
- ARG SASHIMI_TANPOPO_VERSION=0.2.0
4
+ ARG SASHIMI_TANPOPO_VERSION=0.3.0
5
5
 
6
6
  WORKDIR /work
7
7
 
@@ -168,11 +168,6 @@ module SashimiTanpopo
168
168
  def write_summary_file(changed_files)
169
169
  return if @summary_path.empty?
170
170
 
171
- unless File.exist?(@summary_path)
172
- SashimiTanpopo.logger.warn "#{@summary_path} does not exist"
173
- return
174
- end
175
-
176
171
  summary = self.class.generate_summary(changed_files: changed_files, dry_run: @dry_run)
177
172
 
178
173
  File.open(@summary_path, "a") do |f|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SashimiTanpopo
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sashimi_tanpopo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445