namo 0.13.1 → 0.13.2
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 +17 -0
- data/lib/Namo/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: 480baeb4c1da195bc5e9800df21267467dd784a4ef6b4fc41cd1997925c36432
|
|
4
|
+
data.tar.gz: d1794682a82a35578e87734569808b61171ceb95f2d0548e761b42052ea5223b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 203c4416d177b726d3f8bec5bebf5225f9bb28cbf2ca3fbae1365f8f0d4062ce95018233e4342ec29b33f2bf753849acc512f1ff017f0925eec629caece73781
|
|
7
|
+
data.tar.gz: a9ca4f20b7319825652588fe780e59601744447c38cddbfe0d2ce2c624200d249ce1ff43113a5d543737ab5789890392a48ff2fcf3dca52c3d5f25c999838bee
|
data/CHANGELOG
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
_________
|
|
3
3
|
|
|
4
|
+
20260608
|
|
5
|
+
0.13.2: Narrow the planned 0.14.0 block-form scope to the composition operators and document the rationale.
|
|
6
|
+
|
|
7
|
+
1. ~ ROADMAP.md: Rewrite the 0.14.0 section from "blocks on comparison, composition, and
|
|
8
|
+
set operators" to "blocks on composition operators (*, **)". State the governing
|
|
9
|
+
principle (a block belongs only where the operator's matching is underdetermined).
|
|
10
|
+
Remove the comparison-operator and set-operator block subsections; note that their use
|
|
11
|
+
cases are expressed by comparing projections and by projection + proc selection
|
|
12
|
+
respectively. State explicitly that / takes no block. Replace "The unifying pattern"
|
|
13
|
+
with the composition-only rationale.
|
|
14
|
+
2. ~ ROADMAP.md: Rescope the Summary's "next phase" pointer to composition-only block forms.
|
|
15
|
+
3. ~ COMPARISON.md: Replace the "Blocks on set operators" subsection (feature no longer
|
|
16
|
+
planned) with a shipped "Keyed anti-join" entry expressing keyed exclusion via projection
|
|
17
|
+
+ proc selection; repoint the composition "Conditional join with block" entry to planned
|
|
18
|
+
(0.14.0). Date bumped to 20260608.
|
|
19
|
+
4. ~ Namo::VERSION: /0.13.1/0.13.2/
|
|
20
|
+
|
|
4
21
|
20260604
|
|
5
22
|
0.13.1: Correct the row-order claim across the docs and document the same-dimension-order precondition.
|
|
6
23
|
|
data/lib/Namo/VERSION.rb
CHANGED