Skip to content

Commit ffd05d8

Browse files
chore: release v1.0.0 (2026-02-10)
Major release with significant improvements: - New complete() and url() functions (#121) - Reminder time field support (#133) - Database connection handling improvements (#125, #126, #132) - Timezone handling fixes (#117, #118) - Contribution guidelines (#123) - CI/CD improvements (removed pylama, fixed Python 3.13 compatibility)
1 parent b4381e1 commit ffd05d8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
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

8-
## [Unreleased]
8+
## [1.0.0] - 2026-02-10
99

1010
### Added
1111

@@ -62,6 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6262
- @chrisgurney (#117, #118, #123, #124)
6363
- @minthemiddle (#116)
6464

65+
## [Unreleased]
66+
6567
## [0.0.15] - 2023-05-22
6668

6769
### Added
@@ -151,7 +153,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
151153

152154
- Initial release
153155

154-
[Unreleased]: https://github.com/thingsapi/things.py/compare/v0.0.15...HEAD
156+
[Unreleased]: https://github.com/thingsapi/things.py/compare/v1.0.0...HEAD
157+
[1.0.0]: https://github.com/thingsapi/things.py/releases/tag/v1.0.0
155158
[0.0.15]: https://github.com/thingsapi/things.py/releases/tag/v0.0.15
156159
[0.0.14]: https://github.com/thingsapi/things.py/releases/tag/v0.0.14
157160
[0.0.13]: https://github.com/thingsapi/things.py/releases/tag/v0.0.13

things/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__copyright__ = "2026 Alexander Willner & Michael Belfrage"
55
__credits__ = ["Alexander Willner", "Michael Belfrage"]
66
__license__ = "Apache License 2.0"
7-
__version__ = "0.0.15"
7+
__version__ = "1.0.0"
88
__maintainer__ = ["Alexander Willner", "Michael Belfrage"]
99
__email__ = "alex@willner.ws"
1010
__status__ = "Development"

0 commit comments

Comments
 (0)