unmagic-color 0.3 → 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: 8e8aee8c90b0b846c5352c1a8c2f9638fdbceaa830a8b240805c093326bd0a5e
4
- data.tar.gz: febb8693169a657fd975d9d60e69232a291aa1f1a8a3cd05372f279a008cbe9d
3
+ metadata.gz: e1dea3d473135c8ad8c18ed7516bffc31c495801cd8df74dc848769ac0335822
4
+ data.tar.gz: aeccee4653d9371f3dade6249b431aed95c8c0627b1ad8666143ebe178075dc2
5
5
  SHA512:
6
- metadata.gz: d6df173651d743f7e4696d22334afaedcac56160e4ec579e2a00c2d06b80802724fd2f3e6da36cd05970994aa14e4ed0466fe33bf1f188b98f291385ed351a0a
7
- data.tar.gz: 46b517537f8393d29c26567daebbfd83913d8d7cd56766f7caa7d35b048161e9c8977865bd9d36ca75669d8296179290fcf2d38c4e1c58780740707158e3ee68
6
+ metadata.gz: 015bd7fbe70b3d12e444e4a356e112a1c39a3d52281eca931bfdbc162af96691fc369f958d8bb9f619db52453ad18eefe8d54e91bb898c57fe9c8526428a44ae
7
+ data.tar.gz: 1bf4d50df68ef31f4b0af636bdd7157a276febf261cff95b9616faed940179a7af82130d5720908736c1435597c15d3ee84adb5a393d69a3965aa5fc49911151
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
+ ## [0.3.1] - 2026-06-27
11
+
12
+ ### Fixed
13
+ - Renamed the gem entry point from `lib/unmagic_color.rb` to `lib/unmagic-color.rb` so Bundler's automatic `require "unmagic-color"` works without needing a manual `require "unmagic/color"`
14
+
10
15
  ## [0.3] - 2026-05-17
11
16
 
12
17
  ### Added
@@ -3,6 +3,6 @@
3
3
  module Unmagic
4
4
  class Color
5
5
  # Current version of the Unmagic::Color gem
6
- VERSION = "0.3"
6
+ VERSION = "0.3.1"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unmagic-color
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keith Pitt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-17 00:00:00.000000000 Z
11
+ date: 2026-06-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Parse, convert, and manipulate colors with support for RGB, Hex, HSL
14
14
  formats, contrast calculations, and color blending
@@ -24,6 +24,7 @@ files:
24
24
  - data/css.txt
25
25
  - data/x11.jsonc
26
26
  - data/x11.txt
27
+ - lib/unmagic-color.rb
27
28
  - lib/unmagic/color.rb
28
29
  - lib/unmagic/color/console/banner.rb
29
30
  - lib/unmagic/color/console/card.rb
@@ -48,7 +49,6 @@ files:
48
49
  - lib/unmagic/color/units/direction.rb
49
50
  - lib/unmagic/color/util/percentage.rb
50
51
  - lib/unmagic/color/version.rb
51
- - lib/unmagic_color.rb
52
52
  homepage: https://github.com/unreasonable-magic/unmagic-color
53
53
  licenses:
54
54
  - MIT
File without changes