purl 1.5.0 → 1.5.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/exe/purl +1 -1
  4. data/lib/purl/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5be58ada7f5731a371cee07f0175e020aa7a49ea7d228c88e1af4c2554d5ecc
4
- data.tar.gz: 96e6ff76c5626c4c414651324eee74c4845e4fb337b93470dc534d49622facfc
3
+ metadata.gz: d7a05916f1c80da787acce69b1e838cc50654bff007a68e9586b87600f268c86
4
+ data.tar.gz: 8ff19d443cd5f0d7de335bca459cfef46b86034a423fa088b83f328c698070bf
5
5
  SHA512:
6
- metadata.gz: adfb3b0b945ad8787738388c3b40087ae662974ba60ff3783100ba845c8e19e8fc73c4480b3296a5df701080af31919dbea66d0c5d3803ec29e18a098da0d837
7
- data.tar.gz: a96abd807ede7d4c6eaff1cb0bdd6bacdfc8723e3dad839f17ecbc7b3502edb9b24e2f32f84fec3b3c100e7ec5cd3a940229fc6421f964c9927fc370587948a3
6
+ metadata.gz: 13e12ba44d1873042b1a24d4aca807c0e9db8907ddbe69dee65edf3e0f709c3e7f7c8ea5328ca9ff6beb9334c895fccc776831997e908eb72a75dc872e98b184
7
+ data.tar.gz: 77cf7235cc898da0d8d416ad83b4dda98cbd30574e47ba7676615bdecb1b403db6fe78532b476a178332fba4b1fb23a50dc7b12396d8f1df311a260d455040f2
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.5.1] - 2025-08-06
11
+
12
+ ### Fixed
13
+ - CLI executable not running when installed as gem due to file comparison issue
14
+
10
15
  ## [1.5.0] - 2025-08-06
11
16
 
12
17
  ### Added
data/exe/purl CHANGED
@@ -479,6 +479,6 @@ class PurlCLI
479
479
  end
480
480
  end
481
481
 
482
- if __FILE__ == $0
482
+ if File.expand_path(__FILE__) == File.expand_path($PROGRAM_NAME)
483
483
  PurlCLI.run
484
484
  end
data/lib/purl/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Purl
4
- VERSION = "1.5.0"
4
+ VERSION = "1.5.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Nesbitt