Skip to content

Commit 652c2ac

Browse files
author
Rodrigo Roldán
committed
bump: update version to 1.3.2
1 parent 288752f commit 652c2ac

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9-
### Changes since v1.3.1
9+
### Changes since v1.3.2
10+
11+
## [1.3.2] - 2025-08-25
12+
13+
### Changed
14+
- Version bump for development
1015

1116
## [1.3.1] - 2025-08-25
1217

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
project = "Eones"
77
copyright = "2025, Rodrigo Ezequiel Roldán"
88
author = "Rodrigo Ezequiel Roldán"
9-
release = "1.3.1"
9+
release = "1.3.2"
1010

1111
extensions = [
1212
"sphinx.ext.autodoc",

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 = "Eones"
7-
version = "1.3.1"
7+
version = "1.3.2"
88
description = "Elegant time manipulation and reasoning library"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
license = {file = "LICENSE.md"}

src/eones/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def from_timestamp(timestamp: Union[int, float], tz: str = "UTC") -> Date:
146146
return Date.from_unix(float(timestamp), tz=tz)
147147

148148

149-
__version__ = "1.3.1"
149+
__version__ = "1.3.2"
150150
__all__ = [
151151
"Eones",
152152
"InvalidFormatError",

tests/unit/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

55
def test_version():
6-
assert eones.__version__ == "1.3.1"
6+
assert eones.__version__ == "1.3.2"

0 commit comments

Comments
 (0)