Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1] - 2025-09-27

### Fixed

- CLI search commands now work without requiring `--data-dir` argument
- Commands use the same default path as `glazing init` (`~/.local/share/glazing/converted/`)
- Updated help text to show default directory path

### Changed

- Improved documentation clarity and conciseness
Expand Down
2 changes: 1 addition & 1 deletion docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ except ValidationError as e:

## Version Compatibility

This documentation covers Glazing version 0.1.0. Check your installed version:
This documentation covers Glazing version 0.1.1. Check your installed version:

```python
import glazing
Expand Down
8 changes: 4 additions & 4 deletions docs/citation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ If you use Glazing in your research, please cite our work.
title = {Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies},
year = {2025},
url = {https://github.com/aaronstevenwhite/glazing},
version = {0.1.0},
version = {0.1.1},
doi = {10.5281/zenodo.17185626}
}
```

### APA

White, A. S. (2025). *Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies* (Version 0.1.0) [Computer software]. https://github.com/aaronstevenwhite/glazing
White, A. S. (2025). *Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies* (Version 0.1.1) [Computer software]. https://github.com/aaronstevenwhite/glazing

### Chicago

White, Aaron Steven. 2025. *Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies*. Version 0.1.0. https://github.com/aaronstevenwhite/glazing.
White, Aaron Steven. 2025. *Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies*. Version 0.1.1. https://github.com/aaronstevenwhite/glazing.

### MLA

White, Aaron Steven. *Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies*. Version 0.1.0, 2025, https://github.com/aaronstevenwhite/glazing.
White, Aaron Steven. *Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies*. Version 0.1.1, 2025, https://github.com/aaronstevenwhite/glazing.

## Citing Datasets

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ If you use Glazing in your research, please cite:
title = {Glazing: Unified Data Models and Interfaces for Syntactic and Semantic Frame Ontologies},
year = {2025},
url = {https://github.com/aaronstevenwhite/glazing},
version = {0.1.0},
version = {0.1.1},
doi = {10.5281/zenodo.17185626}
}
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "glazing"
version = "0.1.0"
version = "0.1.1"
description = "Unified data models and interfaces for syntactic and semantic frame ontologies"
readme = "README.md"
requires-python = ">=3.13"
Expand Down
2 changes: 1 addition & 1 deletion src/glazing/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information for the glazing package."""

__version__ = "0.1.0"
__version__ = "0.1.1"
__version_info__ = tuple(int(i) for i in __version__.split("."))
21 changes: 13 additions & 8 deletions src/glazing/cli/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from rich.tree import Tree

from glazing.framenet.models import Frame
from glazing.initialize import get_default_data_path
from glazing.propbank.models import Frameset
from glazing.search import SearchResult, UnifiedSearch
from glazing.verbnet.models import VerbClass
Expand Down Expand Up @@ -174,8 +175,9 @@ def search() -> None:
@click.option(
"--data-dir",
type=click.Path(exists=True, file_okay=False, dir_okay=True),
required=True,
help="Directory containing converted JSON Lines files.",
default=lambda: get_default_data_path(),
help="Directory containing converted JSON Lines files "
"(default: ~/.local/share/glazing/converted).",
)
@click.option(
"--dataset",
Expand Down Expand Up @@ -291,8 +293,9 @@ def search_query(
@click.option(
"--data-dir",
type=click.Path(exists=True, file_okay=False, dir_okay=True),
required=True,
help="Directory containing converted JSON Lines files.",
default=lambda: get_default_data_path(),
help="Directory containing converted JSON Lines files "
"(default: ~/.local/share/glazing/converted).",
)
@click.option(
"--json",
Expand Down Expand Up @@ -343,8 +346,9 @@ def get_entity(
@click.option(
"--data-dir",
type=click.Path(exists=True, file_okay=False, dir_okay=True),
required=True,
help="Directory containing converted JSON Lines files.",
default=lambda: get_default_data_path(),
help="Directory containing converted JSON Lines files "
"(default: ~/.local/share/glazing/converted).",
)
@click.option(
"--dataset",
Expand Down Expand Up @@ -427,8 +431,9 @@ def search_role(
@click.option(
"--data-dir",
type=click.Path(exists=True, file_okay=False, dir_okay=True),
required=True,
help="Directory containing converted JSON Lines files.",
default=lambda: get_default_data_path(),
help="Directory containing converted JSON Lines files "
"(default: ~/.local/share/glazing/converted).",
)
def find_cross_ref(
source: str,
Expand Down
Loading