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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This repository is also a design artifact.
It documents a series of deliberate engineering choices: `src/` layout, Pydantic v2 migration, pandas removal,
pluggable storage, `uv`-based workflows, and locale-aware workbook output.

The current stable release line is `2.0.0.post1`, the first post-release update to the stable ExcelAlchemy 2.0 line.
The current stable release line is `2.1.0`, which continues the stable ExcelAlchemy 2.x line with internal architecture cleanup and naming improvements.

## At a Glance

Expand Down
2 changes: 1 addition & 1 deletion README_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ExcelAlchemy 是一个面向 Excel 导入导出的 schema-first Python 库。
它的核心思路不是“读写表格文件”,而是“把 Excel 当成一种带约束的业务契约”。

当前稳定发布版本是 `2.0.0.post1`,也就是 ExcelAlchemy 2.0 稳定线的首个 post-release 更新
当前稳定发布版本是 `2.1.0`,它在稳定的 ExcelAlchemy 2.x 线上继续推进了内部架构整理和命名收口

你用 Pydantic 模型定义结构,用 `FieldMeta` 定义 Excel 元数据,用显式的导入/导出流程去完成模板生成、数据校验、错误回写和后端集成。

Expand Down
2 changes: 1 addition & 1 deletion src/excelalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""A Python Library for Reading and Writing Excel Files"""

__version__ = '2.0.0.post1'
__version__ = '2.1.0'
from excelalchemy._primitives.constants import CharacterSet, DataRangeOption, DateFormat, Option
from excelalchemy._primitives.deprecation import ExcelAlchemyDeprecationWarning
from excelalchemy._primitives.identity import (
Expand Down
Loading