diffstitch 1.0.3 → 1.0.4
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 +4 -4
- data/CHANGELOG.md +7 -1
- data/diffstitch.gemspec +1 -1
- data/lib/diffstitch/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74b69cdfd5901bfe2b8e333537608bcb773eeb503c92f39af8226888b9b43828
|
|
4
|
+
data.tar.gz: 1ed709795ca6c1d8987fa2d49e330e9bbd7a515dcbf1d80bc288cb4fd9fc8817
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15a9bf05c93bf90b1bf4caf293d58e89ed57cb6b1cca388cc86f90ab3c114430456fc7fedb3e3dd3eedc197fcd7110ebe95718df4cf3a0a56aefc414be8ff7d3
|
|
7
|
+
data.tar.gz: b11f4d6fbef375789c2b4f28a2ecef0457a1f39d2ccfb636dce4a892f0da541bf5563496be034f81dab48c1b6d295ce251ef7d5440b6da4efce5958fd11d8e9e
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.4] - 2026-05-22
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Minimum required Ruby version raised from 2.7.0 to 3.1.0
|
|
14
|
+
|
|
10
15
|
## [1.0.3] - 2026-05-22
|
|
11
16
|
|
|
12
17
|
### Fixed
|
|
@@ -68,7 +73,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
68
73
|
- `--title` flag for a custom page title
|
|
69
74
|
- `--version` / `--help` flags
|
|
70
75
|
|
|
71
|
-
[Unreleased]: https://github.com/sroomberg/diffstitch/compare/v1.0.
|
|
76
|
+
[Unreleased]: https://github.com/sroomberg/diffstitch/compare/v1.0.4...HEAD
|
|
77
|
+
[1.0.4]: https://github.com/sroomberg/diffstitch/compare/v1.0.3...v1.0.4
|
|
72
78
|
[1.0.3]: https://github.com/sroomberg/diffstitch/compare/v1.0.2...v1.0.3
|
|
73
79
|
[1.0.2]: https://github.com/sroomberg/diffstitch/compare/v1.0.1...v1.0.2
|
|
74
80
|
[1.0.1]: https://github.com/sroomberg/diffstitch/compare/v1.0.0...v1.0.1
|
data/diffstitch.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = 'A CLI tool that generates a side-by-side HTML report comparing ' \
|
|
13
13
|
'multiple git branches against a common base branch.'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
|
-
spec.required_ruby_version = '>=
|
|
15
|
+
spec.required_ruby_version = '>= 3.1.0'
|
|
16
16
|
|
|
17
17
|
spec.homepage = 'https://github.com/sroomberg/diffstitch'
|
|
18
18
|
spec.metadata = {
|
data/lib/diffstitch/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: diffstitch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Roomberg
|
|
@@ -118,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
requirements:
|
|
119
119
|
- - ">="
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
|
-
version:
|
|
121
|
+
version: 3.1.0
|
|
122
122
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - ">="
|