Skip to content

Commit 8d4af41

Browse files
chore: bump version to 0.1.2, update documentation, and refine site header styling
1 parent 1075e26 commit 8d4af41

6 files changed

Lines changed: 27 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to **LongParser** are documented here.
55
This project follows [Semantic Versioning](https://semver.org/) and
66
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
77

8+
## [0.1.2] — 2026-04-05
9+
10+
### Changed
11+
12+
- Project logo added to documentation site, README, and PyPI page
13+
- Documentation site header updated — logo replaces text title
14+
- Installation guide restructured for clarity
15+
16+
---
17+
818
## [0.1.1] — 2026-04-04
919

1020
### Added

docs/assets/extra.css

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
/* Hide the site name text next to the logo — logo already contains the name */
2-
.md-header__title {
3-
display: none !important;
4-
}
5-
6-
/* Also hide in the breadcrumb / nav title area */
7-
.md-ellipsis {
1+
/* Hide ONLY the site name text in the top header bar.
2+
The logo already contains the name — no need to show it twice.
3+
We target the header topic specifically to avoid hiding sidebar nav text. */
4+
.md-header__topic:first-child {
85
display: none !important;
96
}

docs/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to **LongParser** are documented here.
55
This project follows [Semantic Versioning](https://semver.org/) and
66
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
77

8+
## [0.1.2] — 2026-04-05
9+
10+
### Changed
11+
12+
- Project logo added to documentation site, README, and PyPI page
13+
- Documentation site header updated — logo replaces text title
14+
- Installation guide restructured for clarity
15+
16+
---
17+
818
## [0.1.1] — 2026-04-04
919

1020
### Added

docs/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ The server starts on `http://localhost:8000`.
104104

105105
```python
106106
import longparser
107-
print(longparser.__version__) # 0.1.1
107+
print(longparser.__version__) # 0.1.2
108108
```

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 = "longparser"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Privacy-first document intelligence engine — converts PDFs, DOCX, PPTX, XLSX, and CSV into AI-ready Markdown + structured JSON for RAG pipelines."
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"

src/longparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
from __future__ import annotations
2727

28-
__version__ = "0.1.1"
28+
__version__ = "0.1.2"
2929
__author__ = "ENDEVSOLS Team"
3030
__license__ = "MIT"
3131

0 commit comments

Comments
 (0)