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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -0
  3. data/lib/giturl/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45b7398651ba238c84ddbe522bbb7cbf0c752d0f4be05d50645ed7ec687073ee
4
- data.tar.gz: 0f8f2c669194a8fd7861a8708a388539e6ee877dc812368f52f97dbb65769f32
3
+ metadata.gz: 573b19763ae39da18a0c44e608af15eb32e28ed76a1ec7a40330fdd6279a849a
4
+ data.tar.gz: c4af8e33c8a67d2c9f5e6459f0da798c5ad3ea315df2a2d1af61fe293d0f4707
5
5
  SHA512:
6
- metadata.gz: 642f9f0dea0c5bcba4ca594e9840bf6ed444f21ed84bd5b614c88521fbedab8a84737db6ef4517beb84cfd147cc140beaf23b19be32a2383ada14e4c4c4f733f
7
- data.tar.gz: d3c6312a37aa378a1a9f3cda929a43d08fe1ceb86d03977e79af0bff29bdcfe559a8aef40bcfd6c44509517ae70f5b7228333d97cf8282686abf9cc5b814ce31
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))
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Giturl
4
- VERSION = '1.3.5'
4
+ VERSION = '1.3.6'
5
5
  DESCRIPTION = <<~DESC
6
6
  giturl: A simple navigation tool for GitHub pages from local git-cloned directories.
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: giturl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shinya Ohtani (shinyaohtani@github)