Skip to content

Commit 288752f

Browse files
author
Rodrigo Roldán
committed
bump: update version to 1.3.1
1 parent af10036 commit 288752f

5 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,18 @@ 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.0
9+
### Changes since v1.3.1
10+
11+
## [1.3.1] - 2025-08-25
12+
13+
### Fixed
14+
- Add missing is_valid_format static method to Eones class
15+
- Fix import-outside-toplevel pylint warning
16+
- Fix docstring syntax error
17+
18+
### Changed
19+
- Update git-cliff-action from v2 to v3 for better stability
20+
- Add OUTPUT environment variable to release workflow
1021

1122
## [1.3.0] - 2025-08-25
1223

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.0"
9+
release = "1.3.1"
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.0"
7+
version = "1.3.1"
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.0"
149+
__version__ = "1.3.1"
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.0"
6+
assert eones.__version__ == "1.3.1"

0 commit comments

Comments
 (0)