vident 2.0.0 → 2.0.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: 1c85914dca2e7df8a1ff9711be7cf0f1528409ff7d44dbb72501474c2c1359c2
4
- data.tar.gz: 43e7d176b19a36b2c7d8640cd230429ae59a46e0b77ad9e6c6d24c9c40e38973
3
+ metadata.gz: 174865fed5f1a8edc71ef641af56b0656c97ab66dfe3dcc1c7b4eea996a7e31d
4
+ data.tar.gz: b581f504c154b4a732702f8cddbe21d020dff12450a11b3880f0f11b13236c4e
5
5
  SHA512:
6
- metadata.gz: 4e07543b9851d9b4d7a9ef98eadec0a53ad8c8e409934fd0f92e942386235fa7f964d36fa04bb84bde91d036ce4cf7231d848e13274f3190f91573b00339a999
7
- data.tar.gz: b89835399b32ff4e98efd24f1fb75328ed0633a73c935eb6a7c844f5f1dc7f909ade0805741445db81a0d704ffcc066aa416c17ee6a65100b9d8fb9738d86b41
6
+ metadata.gz: d3602b080034a184bcbb663602ff6d8fff95ef1cdbe855393b2d2d875f0d3485415237008818f4fa336da33c4587a7f57e52bcef6542d09a2f153f468bb1a7c9
7
+ data.tar.gz: f133d2034fbcbdf31429696469f7127a8d38f765e174f75857abd9c18f3f1e8da6156534514b84bdddbe436c590d2c927509bd29a2023fe6a53c6d034c81db96
data/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
 
9
+ ## [2.0.1] - 2026-04-24
10
+
11
+ ### Fixed
12
+
13
+ - Base gem no longer fails to load when installed without the adapter gems — adapter requires moved to their own entry points (`lib/vident-phlex.rb`, `lib/vident-view_component.rb`) (#29).
14
+
15
+
9
16
  ## [2.0.0] - 2026-04-24
10
17
 
11
18
  Vident 2.0 is a ground-up rearchitecture of the DSL, attribute resolution, and composition model. The public shape of `stimulus do ... end`, `root_element`, `child_element`, outlets, props, and the `stimulus_*:` prop/kwarg API is preserved for common cases, but several internals and a handful of edge-case behaviours changed. See `doc/reviews/v1-gotchas.md` for the full list of fixed gotchas; the highlights are below.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vident
4
- VERSION = "2.0.0"
4
+ VERSION = "2.0.1"
5
5
  end
data/lib/vident.rb CHANGED
@@ -54,5 +54,7 @@ require "vident/caching"
54
54
 
55
55
  require "vident/component"
56
56
 
57
- require "vident/phlex"
58
- require "vident/view_component"
57
+ # Adapter modules (`vident/phlex`, `vident/view_component`) ship in their own
58
+ # gems and are loaded by their own entry points (`lib/vident-phlex.rb`,
59
+ # `lib/vident-view_component.rb`). Do not require them unconditionally here —
60
+ # they only exist when the corresponding adapter gem is installed.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vident
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Ierodiaconou