rdf-construct 0.2.1__tar.gz → 0.3.0__tar.gz

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 (109) hide show
  1. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/PKG-INFO +65 -2
  2. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/README.md +63 -0
  3. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/pyproject.toml +2 -2
  4. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/__init__.py +1 -1
  5. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cli.py +1667 -0
  6. rdf_construct-0.3.0/src/rdf_construct/localise/__init__.py +114 -0
  7. rdf_construct-0.3.0/src/rdf_construct/localise/config.py +508 -0
  8. rdf_construct-0.3.0/src/rdf_construct/localise/extractor.py +427 -0
  9. rdf_construct-0.3.0/src/rdf_construct/localise/formatters/__init__.py +36 -0
  10. rdf_construct-0.3.0/src/rdf_construct/localise/formatters/markdown.py +229 -0
  11. rdf_construct-0.3.0/src/rdf_construct/localise/formatters/text.py +224 -0
  12. rdf_construct-0.3.0/src/rdf_construct/localise/merger.py +346 -0
  13. rdf_construct-0.3.0/src/rdf_construct/localise/reporter.py +356 -0
  14. rdf_construct-0.3.0/src/rdf_construct/merge/__init__.py +165 -0
  15. rdf_construct-0.3.0/src/rdf_construct/merge/config.py +354 -0
  16. rdf_construct-0.3.0/src/rdf_construct/merge/conflicts.py +281 -0
  17. rdf_construct-0.3.0/src/rdf_construct/merge/formatters.py +426 -0
  18. rdf_construct-0.3.0/src/rdf_construct/merge/merger.py +425 -0
  19. rdf_construct-0.3.0/src/rdf_construct/merge/migrator.py +339 -0
  20. rdf_construct-0.3.0/src/rdf_construct/merge/rules.py +377 -0
  21. rdf_construct-0.3.0/src/rdf_construct/merge/splitter.py +1102 -0
  22. rdf_construct-0.3.0/src/rdf_construct/refactor/__init__.py +72 -0
  23. rdf_construct-0.3.0/src/rdf_construct/refactor/config.py +362 -0
  24. rdf_construct-0.3.0/src/rdf_construct/refactor/deprecator.py +328 -0
  25. rdf_construct-0.3.0/src/rdf_construct/refactor/formatters/__init__.py +8 -0
  26. rdf_construct-0.3.0/src/rdf_construct/refactor/formatters/text.py +311 -0
  27. rdf_construct-0.3.0/src/rdf_construct/refactor/renamer.py +294 -0
  28. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/LICENSE +0 -0
  29. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/__main__.py +0 -0
  30. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/__init__.py +0 -0
  31. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/config.py +0 -0
  32. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/ordering.py +0 -0
  33. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/predicate_order.py +0 -0
  34. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/profile.py +0 -0
  35. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/selector.py +0 -0
  36. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/serialiser.py +0 -0
  37. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/core/utils.py +0 -0
  38. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/__init__.py +0 -0
  39. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/expectations.py +0 -0
  40. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/formatters/__init__.py +0 -0
  41. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/formatters/json.py +0 -0
  42. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/formatters/junit.py +0 -0
  43. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/formatters/text.py +0 -0
  44. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/loader.py +0 -0
  45. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/cq/runner.py +0 -0
  46. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/__init__.py +0 -0
  47. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/change_types.py +0 -0
  48. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/comparator.py +0 -0
  49. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/filters.py +0 -0
  50. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/formatters/__init__.py +0 -0
  51. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/formatters/json.py +0 -0
  52. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/formatters/markdown.py +0 -0
  53. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/diff/formatters/text.py +0 -0
  54. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/__init__.py +0 -0
  55. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/config.py +0 -0
  56. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/extractors.py +0 -0
  57. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/generator.py +0 -0
  58. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/renderers/__init__.py +0 -0
  59. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/renderers/html.py +0 -0
  60. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/renderers/json.py +0 -0
  61. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/renderers/markdown.py +0 -0
  62. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/search.py +0 -0
  63. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/base.html.jinja +0 -0
  64. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/class.html.jinja +0 -0
  65. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/hierarchy.html.jinja +0 -0
  66. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/index.html.jinja +0 -0
  67. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/instance.html.jinja +0 -0
  68. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/namespaces.html.jinja +0 -0
  69. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/property.html.jinja +0 -0
  70. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/docs/templates/html/single_page.html.jinja +0 -0
  71. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/lint/__init__.py +0 -0
  72. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/lint/config.py +0 -0
  73. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/lint/engine.py +0 -0
  74. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/lint/formatters.py +0 -0
  75. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/lint/rules.py +0 -0
  76. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/main.py +0 -0
  77. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/__init__.py +0 -0
  78. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/config.py +0 -0
  79. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/converter.py +0 -0
  80. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/merger.py +0 -0
  81. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/model.py +0 -0
  82. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/parser.py +0 -0
  83. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/puml2rdf/validators.py +0 -0
  84. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/shacl/__init__.py +0 -0
  85. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/shacl/config.py +0 -0
  86. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/shacl/converters.py +0 -0
  87. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/shacl/generator.py +0 -0
  88. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/shacl/namespaces.py +0 -0
  89. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/__init__.py +0 -0
  90. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/collector.py +0 -0
  91. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/comparator.py +0 -0
  92. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/formatters/__init__.py +0 -0
  93. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/formatters/json.py +0 -0
  94. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/formatters/markdown.py +0 -0
  95. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/formatters/text.py +0 -0
  96. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/__init__.py +0 -0
  97. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/basic.py +0 -0
  98. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/complexity.py +0 -0
  99. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/connectivity.py +0 -0
  100. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/documentation.py +0 -0
  101. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/hierarchy.py +0 -0
  102. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/stats/metrics/properties.py +0 -0
  103. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/__init__.py +0 -0
  104. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/context.py +0 -0
  105. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/mapper.py +0 -0
  106. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/odm_renderer.py +0 -0
  107. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/renderer.py +0 -0
  108. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/uml_layout.py +0 -0
  109. {rdf_construct-0.2.1 → rdf_construct-0.3.0}/src/rdf_construct/uml/uml_style.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rdf-construct
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: Semantic RDF manipulation toolkit - order, serialize, and diff RDF ontologies
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -10,7 +10,7 @@ Author-email: 23141680+aigora-de@users.noreply.github.com
10
10
  Maintainer: Dave Dyke
11
11
  Maintainer-email: 23141680+aigora-de@users.noreply.github.com
12
12
  Requires-Python: >=3.10
13
- Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Development Status :: 4 - Beta
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Intended Audience :: Science/Research
16
16
  Classifier: Intended Audience :: Information Technology
@@ -55,6 +55,10 @@ Description-Content-Type: text/markdown
55
55
  - **PUML2RDF**: Convert PlantUML diagrams to RDF/OWL ontologies (diagram-first design)
56
56
  - **SHACL Generation**: Generate SHACL validation shapes from OWL definitions
57
57
  - **Semantic Diff**: Compare ontology versions and identify meaningful changes
58
+ - **Ontology Merging**: Combine multiple ontologies with conflict detection and data migration
59
+ - **Ontology Splitting**: Split monolithic ontologies into modules with dependency tracking
60
+ - **Ontology Refactoring**: Rename URIs and deprecate entities with OWL annotations
61
+ - **Multi-Language Support**: Extract, translate, and merge translations for internationalised ontologies
58
62
  - **Ontology Linting**: Check quality with 11 configurable rules
59
63
  - **Competency Question Testing**: Validate ontologies against SPARQL-based tests
60
64
  - **Ontology Statistics**: Comprehensive metrics with comparison mode
@@ -177,6 +181,62 @@ rdf-construct stats ontology.ttl
177
181
  rdf-construct stats v1.ttl v2.ttl --compare --format markdown
178
182
  ```
179
183
 
184
+ ### Merge Ontologies
185
+
186
+ ```bash
187
+ # Basic merge
188
+ rdf-construct merge core.ttl extension.ttl -o merged.ttl
189
+
190
+ # With priorities (higher wins conflicts)
191
+ rdf-construct merge core.ttl extension.ttl -o merged.ttl -p 1 -p 2
192
+
193
+ # Generate conflict report
194
+ rdf-construct merge core.ttl extension.ttl -o merged.ttl --report conflicts.md
195
+ ```
196
+
197
+ ### Split Ontologies
198
+ ```bash
199
+ # Split by namespace (auto-detect modules)
200
+ rdf-construct split large.ttl -o modules/ --by-namespace
201
+
202
+ # Split with configuration file
203
+ rdf-construct split large.ttl -o modules/ -c split.yml
204
+
205
+ # Preview what would be created
206
+ rdf-construct split large.ttl -o modules/ --by-namespace --dry-run
207
+ ```
208
+
209
+ ### Refactor Ontologies
210
+ ```bash
211
+ # Fix a typo
212
+ rdf-construct refactor rename ontology.ttl \
213
+ --from "ex:Buiding" --to "ex:Building" -o fixed.ttl
214
+
215
+ # Bulk namespace change
216
+ rdf-construct refactor rename ontology.ttl \
217
+ --from-namespace "http://old/" --to-namespace "http://new/" -o migrated.ttl
218
+
219
+ # Deprecate an entity with replacement
220
+ rdf-construct refactor deprecate ontology.ttl \
221
+ --entity "ex:LegacyClass" --replaced-by "ex:NewClass" \
222
+ --message "Use NewClass instead." -o updated.ttl
223
+
224
+ # Preview changes
225
+ rdf-construct refactor rename ontology.ttl --from "ex:Old" --to "ex:New" --dry-run
226
+ ```
227
+
228
+ ### Multi-Language Translations
229
+ ```bash
230
+ # Extract strings for German translation
231
+ rdf-construct localise extract ontology.ttl --language de -o translations/de.yml
232
+
233
+ # Merge completed translations
234
+ rdf-construct localise merge ontology.ttl translations/de.yml -o localised.ttl
235
+
236
+ # Check translation coverage
237
+ rdf-construct localise report ontology.ttl --languages en,de,fr
238
+ ```
239
+
180
240
  ## Documentation
181
241
 
182
242
  📚 **[Complete Documentation](docs/index.md)** - Start here
@@ -191,6 +251,9 @@ rdf-construct stats v1.ttl v2.ttl --compare --format markdown
191
251
  - [Lint Guide](docs/user_guides/LINT_GUIDE.md) - Ontology quality checking
192
252
  - [CQ Testing Guide](docs/user_guides/CQ_TEST_GUIDE.md) - Competency question testing
193
253
  - [Stats Guide](docs/user_guides/STATS_GUIDE.md) - Ontology metrics
254
+ - [Merge Guide](docs/user_guides/MERGE_GUIDE.md) - Combining ontologies
255
+ - [Refactor Guide](docs/user_guides/REFACTOR_GUIDE.md) - Renaming and deprecation
256
+ - [Localise Guide](docs/user_guides/LOCALISE_GUIDE.md) - Multi-language translations
194
257
  - [CLI Reference](docs/user_guides/CLI_REFERENCE.md) - All commands and options
195
258
 
196
259
  **For Developers**:
@@ -17,6 +17,10 @@
17
17
  - **PUML2RDF**: Convert PlantUML diagrams to RDF/OWL ontologies (diagram-first design)
18
18
  - **SHACL Generation**: Generate SHACL validation shapes from OWL definitions
19
19
  - **Semantic Diff**: Compare ontology versions and identify meaningful changes
20
+ - **Ontology Merging**: Combine multiple ontologies with conflict detection and data migration
21
+ - **Ontology Splitting**: Split monolithic ontologies into modules with dependency tracking
22
+ - **Ontology Refactoring**: Rename URIs and deprecate entities with OWL annotations
23
+ - **Multi-Language Support**: Extract, translate, and merge translations for internationalised ontologies
20
24
  - **Ontology Linting**: Check quality with 11 configurable rules
21
25
  - **Competency Question Testing**: Validate ontologies against SPARQL-based tests
22
26
  - **Ontology Statistics**: Comprehensive metrics with comparison mode
@@ -139,6 +143,62 @@ rdf-construct stats ontology.ttl
139
143
  rdf-construct stats v1.ttl v2.ttl --compare --format markdown
140
144
  ```
141
145
 
146
+ ### Merge Ontologies
147
+
148
+ ```bash
149
+ # Basic merge
150
+ rdf-construct merge core.ttl extension.ttl -o merged.ttl
151
+
152
+ # With priorities (higher wins conflicts)
153
+ rdf-construct merge core.ttl extension.ttl -o merged.ttl -p 1 -p 2
154
+
155
+ # Generate conflict report
156
+ rdf-construct merge core.ttl extension.ttl -o merged.ttl --report conflicts.md
157
+ ```
158
+
159
+ ### Split Ontologies
160
+ ```bash
161
+ # Split by namespace (auto-detect modules)
162
+ rdf-construct split large.ttl -o modules/ --by-namespace
163
+
164
+ # Split with configuration file
165
+ rdf-construct split large.ttl -o modules/ -c split.yml
166
+
167
+ # Preview what would be created
168
+ rdf-construct split large.ttl -o modules/ --by-namespace --dry-run
169
+ ```
170
+
171
+ ### Refactor Ontologies
172
+ ```bash
173
+ # Fix a typo
174
+ rdf-construct refactor rename ontology.ttl \
175
+ --from "ex:Buiding" --to "ex:Building" -o fixed.ttl
176
+
177
+ # Bulk namespace change
178
+ rdf-construct refactor rename ontology.ttl \
179
+ --from-namespace "http://old/" --to-namespace "http://new/" -o migrated.ttl
180
+
181
+ # Deprecate an entity with replacement
182
+ rdf-construct refactor deprecate ontology.ttl \
183
+ --entity "ex:LegacyClass" --replaced-by "ex:NewClass" \
184
+ --message "Use NewClass instead." -o updated.ttl
185
+
186
+ # Preview changes
187
+ rdf-construct refactor rename ontology.ttl --from "ex:Old" --to "ex:New" --dry-run
188
+ ```
189
+
190
+ ### Multi-Language Translations
191
+ ```bash
192
+ # Extract strings for German translation
193
+ rdf-construct localise extract ontology.ttl --language de -o translations/de.yml
194
+
195
+ # Merge completed translations
196
+ rdf-construct localise merge ontology.ttl translations/de.yml -o localised.ttl
197
+
198
+ # Check translation coverage
199
+ rdf-construct localise report ontology.ttl --languages en,de,fr
200
+ ```
201
+
142
202
  ## Documentation
143
203
 
144
204
  📚 **[Complete Documentation](docs/index.md)** - Start here
@@ -153,6 +213,9 @@ rdf-construct stats v1.ttl v2.ttl --compare --format markdown
153
213
  - [Lint Guide](docs/user_guides/LINT_GUIDE.md) - Ontology quality checking
154
214
  - [CQ Testing Guide](docs/user_guides/CQ_TEST_GUIDE.md) - Competency question testing
155
215
  - [Stats Guide](docs/user_guides/STATS_GUIDE.md) - Ontology metrics
216
+ - [Merge Guide](docs/user_guides/MERGE_GUIDE.md) - Combining ontologies
217
+ - [Refactor Guide](docs/user_guides/REFACTOR_GUIDE.md) - Renaming and deprecation
218
+ - [Localise Guide](docs/user_guides/LOCALISE_GUIDE.md) - Multi-language translations
156
219
  - [CLI Reference](docs/user_guides/CLI_REFERENCE.md) - All commands and options
157
220
 
158
221
  **For Developers**:
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [project]
6
6
  name = "rdf-construct"
7
- version = "0.2.1"
7
+ version = "0.3.0"
8
8
  description = "Semantic RDF manipulation toolkit - order, serialize, and diff RDF ontologies"
9
9
  license = "MIT"
10
10
  readme = "README.md"
@@ -29,7 +29,7 @@ keywords = [
29
29
  "sparql",
30
30
  ]
31
31
  classifiers = [
32
- "Development Status :: 3 - Alpha",
32
+ "Development Status :: 4 - Beta",
33
33
  "Intended Audience :: Developers",
34
34
  "Intended Audience :: Science/Research",
35
35
  "Intended Audience :: Information Technology",
@@ -4,7 +4,7 @@ Named after the ROM construct from William Gibson's Neuromancer -
4
4
  preserved, structured knowledge that can be queried and transformed.
5
5
  """
6
6
 
7
- __version__ = "0.2.1"
7
+ __version__ = "0.3.0"
8
8
 
9
9
  from . import core, uml
10
10
  from .cli import cli