giturl 1.3.5 → 1.3.6
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 +22 -0
- data/lib/giturl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 573b19763ae39da18a0c44e608af15eb32e28ed76a1ec7a40330fdd6279a849a
|
|
4
|
+
data.tar.gz: c4af8e33c8a67d2c9f5e6459f0da798c5ad3ea315df2a2d1af61fe293d0f4707
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 210f26eb0a8fa88f37e134bd3d133fc02d8a2a535d2e4fc982fc088f390846046b6ae63598322552cf8f0bfde53e0dd7ae3fe3f7ecd38df0e2ac5fb5d624e0ca
|
|
7
|
+
data.tar.gz: 66e722c6696b5e9d8ce8e44b889511a372fb501c34067e4d9fe1fa161bd12b3e1fc962c91b375e2e7db0cdb8d3743030c1a14ba6916af8f826b7430fe9607829
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v1.3.6](https://github.com/shinyaohtani/giturl/tree/v1.3.6) (2026-09-03)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.5...v1.3.6)
|
|
6
|
+
|
|
7
|
+
- Same code as v1.3.5. Re-released solely to link the fixes below to
|
|
8
|
+
the issues that describe them, which v1.3.5 shipped without.
|
|
9
|
+
|
|
10
|
+
**Fixed bugs:**
|
|
11
|
+
|
|
12
|
+
- bundle exec rubocop crashes on Ruby 4.0 \(LoadError: benchmark\) [\#36](https://github.com/shinyaohtani/giturl/issues/36)
|
|
13
|
+
- rspec suite fails: fixture branch no longer exists on GitHub [\#35](https://github.com/shinyaohtani/giturl/issues/35)
|
|
14
|
+
- giturl . outputs nothing at the repository root [\#34](https://github.com/shinyaohtani/giturl/issues/34)
|
|
15
|
+
|
|
16
|
+
**Closed issues:**
|
|
17
|
+
|
|
18
|
+
- Dependencies and Ruby version are far behind current releases [\#38](https://github.com/shinyaohtani/giturl/issues/38)
|
|
19
|
+
- No CI workflow to catch regressions [\#37](https://github.com/shinyaohtani/giturl/issues/37)
|
|
20
|
+
|
|
3
21
|
## [v1.3.5](https://github.com/shinyaohtani/giturl/tree/v1.3.5) (2026-09-03)
|
|
4
22
|
|
|
5
23
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.4...v1.3.5)
|
|
6
24
|
|
|
25
|
+
- Yanked: shipped without the tracking issues linked below, so it's
|
|
26
|
+
undiscoverable what this release actually fixed. Superseded by
|
|
27
|
+
v1.3.6, which has the same code plus the corrected changelog.
|
|
28
|
+
|
|
7
29
|
**Merged pull requests:**
|
|
8
30
|
|
|
9
31
|
- Fix root-dir bug, make specs hermetic, add CI, update all deps to latest [\#33](https://github.com/shinyaohtani/giturl/pull/33) ([shinyaohtani](https://github.com/shinyaohtani))
|
data/lib/giturl/version.rb
CHANGED