Skip to content

Commit 979208d

Browse files
authored
Merge pull request #30 from gram-data/019-integration-polish
019 integration polish
2 parents bda7371 + a1ac4af commit 979208d

12 files changed

Lines changed: 995 additions & 3468 deletions

File tree

.cursor/rules/specify-rules.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ tests/
3838
: Follow standard conventions
3939

4040
## Recent Changes
41+
- 019-integration-polish: Added [if applicable, e.g., PostgreSQL, CoreData, files or N/A]
4142
- 018-pattern-path-semantics: Added [if applicable, e.g., PostgreSQL, CoreData, files or N/A]
4243
- 016-gram-parsing-conformance: Added Haskell (GHC 9.x) + `megaparsec` (parsing), `hspec` (testing)
43-
- 014-gram-serialization: Added Haskell (GHC 9.10.3, 9.8.4)
4444

4545

4646
<!-- MANUAL ADDITIONS START -->

libs/pattern/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
# Revision history for pattern
1+
# CHANGELOG
22

3-
## 0.1.0.0 -- YYYY-mm-dd
3+
## [0.1.0] - 2025-11-29
4+
### Added
5+
- Feature 019: Integration and Polish - finalized API exports, completed Haddock documentation, and verified rigorous semantics via property tests.
46

5-
* First version. Released on an unsuspecting world.
7+
## [0.0.1] - 2025-11-29
8+
### Added
9+
- Initial release

libs/pattern/src/Pattern.hs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,17 @@
4141
-- Internal implementation details and helper functions are not exported through
4242
-- this module, ensuring a clean public API.
4343
module Pattern
44-
( module Pattern.Core
44+
( -- * Core Pattern Type and Operations
45+
module Pattern.Core
46+
-- * Graph Views and Interpretations
4547
, module Pattern.Views
48+
-- * Graph Operations
4649
, module Pattern.Graph
50+
-- * Morphisms and Transformations
4751
, module Pattern.Morphisms
4852
) where
4953

5054
import Pattern.Core
5155
import Pattern.Views
5256
import Pattern.Graph
5357
import Pattern.Morphisms
54-

0 commit comments

Comments
 (0)