Skip to content

Commit f0f3054

Browse files
release 1.0.0
Overview This release introduces several minor behavior changes to make API more consistent. Starting from this release, connector no longer depends on `pandas`. Breaking changes - Allow only named `on_push` and `on_push_ctx` for `insert` and `replace`. - `tarantool.Datetime` `__repr__` has been changed. - `tarantool.Datetime` input arguments are validated with `datetime.datetime` rules. - `tarantool.Datetime` is no longer expected to throw `pandas.Timestamp` exceptions. `datetime.datetime` exceptions will be thrown instead of them. - Drop the support of `__eq__` operator of `tarantool.Datetime` for `pandas.Timestamp`. - Remove `join` and `subscribe` connection methods. Changes - Migrate to built-in `Warning` instead of a custom one. - Migrate to built-in `RecursionError` instead of a custom one. - Collect full exception traceback. - Package no longer depends on `pandas` (#290). Infrastructure - Lint the code with `pylint`, `flake8` and `codespell`.
1 parent c711397 commit f0f3054

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## 1.0.0 - 2023-04-17
88

99
### Changed
1010
- **Breaking**: Allow only named `on_push` and `on_push_ctx` for `insert` and `replace`.

debian/changelog

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
python3-tarantool (1.0.0-0) unstable; urgency=medium
2+
3+
## Overview
4+
5+
This release introduces several minor behavior changes
6+
to make API more consistent.
7+
8+
Starting from this release, connector no longer depends on `pandas`.
9+
10+
## Breaking changes
11+
12+
- Allow only named `on_push` and `on_push_ctx` for `insert` and `replace`.
13+
- `tarantool.Datetime` `__repr__` has been changed.
14+
- `tarantool.Datetime` input arguments are validated with `datetime.datetime` rules.
15+
- `tarantool.Datetime` is no longer expected to throw `pandas.Timestamp`
16+
exceptions. `datetime.datetime` exceptions will be thrown instead of them.
17+
- Drop the support of `__eq__` operator of `tarantool.Datetime` for `pandas.Timestamp`.
18+
- Remove `join` and `subscribe` connection methods.
19+
20+
## Changes
21+
22+
- Migrate to built-in `Warning` instead of a custom one.
23+
- Migrate to built-in `RecursionError` instead of a custom one.
24+
- Collect full exception traceback.
25+
- Package no longer depends on `pandas` (#290).
26+
27+
## Infrastructure
28+
29+
- Lint the code with `pylint`, `flake8` and `codespell`.
30+
31+
-- Georgy.moiseev <[email protected]> Mon, 17 Apr 2023 13:00:00 +0300
32+
133
python3-tarantool (0.12.1-0) unstable; urgency=medium
234

335
## Overview

0 commit comments

Comments
 (0)