Skip to content

Commit 28d6044

Browse files
authored
Merge pull request #36 from VisLab/format_corrections
Fixed the module name to be remodeler
2 parents 86d4dc4 + 8de2f7a commit 28d6044

7 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.0] - 2025-12-30
6+
7+
- Reformated the documentation to follow the HED website styles.
8+
- Corrected the distribution module name to be remodeler (not remodel)
9+
510
## [0.1.0] - 2025-12-12
611

712
### Initial Release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Tabular file remodeling and reorganizing tools for event files and datasets.
2020
## Installation
2121

2222
```bash
23-
pip install remodeler
23+
pip install table-remodeler
2424
```
2525

2626
For development:

docs/api/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This section contains the complete API reference for Table Remodeler.
1313
Package overview
1414
----------------
1515

16-
The Table Remodeler package is organized into three main modules:
16+
The table-remodeler package is organized into three main modules:
1717

1818
* **Core**: Main dispatcher, backup manager, and validator classes
1919
* **Operations**: All remodeling and summary operations for tabular data
@@ -22,7 +22,7 @@ The Table Remodeler package is organized into three main modules:
2222
Quick start
2323
-----------
2424

25-
The primary entry point for programmatic use is the :class:`~remodel.dispatcher.Dispatcher` class:
25+
The primary entry point for programmatic use is the :class:`~remodeler.dispatcher.Dispatcher` class:
2626

2727
.. code-block:: python
2828

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
author = "HED Standard"
1212

1313
# The full version, including alpha/beta/rc tags
14-
release = "0.1.0"
14+
release = "0.2.0"
1515

1616
# -- General configuration ---------------------------------------------------
1717
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "table-remodeler"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "Tabular file remodeling and reorganizing tools for event files and datasets."
99
readme = "README.md"
1010
authors = [

qlty.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ paths = [
5959
formats = ["cobertura"]
6060
paths = ["coverage.xml"]
6161
path_style = "relative"
62-
sources = ["remodel"]
62+
sources = ["remodeler"]

remodeler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Remodeling tools for revising and summarizing tabular files."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.2.0"
44

55
from .backup_manager import BackupManager
66
from .dispatcher import Dispatcher

0 commit comments

Comments
 (0)