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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to **sdata** are documented here. The format is based on

## [Unreleased]

## [1.3.0] - 2026-06-29

A large, strictly **additive** increment: a content/integrity foundation under all
data containers (`Blob`), a much broader `DataFrame` serialization portfolio, and
native, format-agnostic metadata embedding for images. Core dependencies remain
Expand Down Expand Up @@ -65,5 +67,6 @@ native, format-agnostic metadata embedding for images. Core dependencies remain
dependencies reduced to `numpy`/`pandas`/`suuid` (stdlib `zoneinfo`); warning-free
test suite.

[Unreleased]: https://github.com/lepy/sdata/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/lepy/sdata/compare/v1.3.0...HEAD
[1.3.0]: https://github.com/lepy/sdata/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/lepy/sdata/releases/tag/v1.2.0
2 changes: 1 addition & 1 deletion sdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*-coding: utf-8-*-
from __future__ import division

__version__ = '1.2.0'
__version__ = '1.3.0'
__revision__ = None
__version_info__ = tuple([int(num) for num in __version__.split('.')])

Expand Down